Merge "ip-lib : use "ip neigh replace" instead of "ip neigh add""

This commit is contained in:
Jenkins 2014-04-22 19:40:25 +00:00 committed by Gerrit Code Review
commit 19a79084fb
2 changed files with 2 additions and 2 deletions

View File

@ -444,7 +444,7 @@ class IpNeighCommand(IpDeviceCommandBase):
COMMAND = 'neigh'
def add(self, ip_version, ip_address, mac_address):
self._as_root('add',
self._as_root('replace',
ip_address,
'lladdr',
mac_address,

View File

@ -810,7 +810,7 @@ class TestIpNeighCommand(TestIPCmdBase):
def test_add_entry(self):
self.neigh_cmd.add(4, '192.168.45.100', 'cc:dd:ee:ff:ab:cd')
self._assert_sudo([4], ('add', '192.168.45.100', 'lladdr',
self._assert_sudo([4], ('replace', '192.168.45.100', 'lladdr',
'cc:dd:ee:ff:ab:cd', 'nud', 'permanent',
'dev', 'tap0'))