summaryrefslogtreecommitdiff
path: root/pyipmi/bmc.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyipmi/bmc.py')
-rw-r--r--pyipmi/bmc.py14
1 files changed, 2 insertions, 12 deletions
diff --git a/pyipmi/bmc.py b/pyipmi/bmc.py
index c4e0d8a..cda3c9b 100644
--- a/pyipmi/bmc.py
+++ b/pyipmi/bmc.py
@@ -431,10 +431,10 @@ class BMC(object):
return self.handle.fabric_getdepthchart(filename=filename,
tftp_addr=tftp_addr)
- def fabric_add_macaddr(self, nodeid=None, iface=0, macaddr=None):
+ def fabric_add_macaddr(self, iface, macaddr, nodeid=None):
return self.handle.fabric_addmacaddr(nodeid=nodeid, iface=iface, macaddr=macaddr)
- def fabric_rm_macaddr(self, nodeid=None, iface=0, macaddr=None):
+ def fabric_rm_macaddr(self, iface, macaddr, nodeid=None):
return self.handle.fabric_rmmacaddr(nodeid=nodeid, iface=iface, macaddr=macaddr)
#
@@ -527,16 +527,6 @@ class BMC(object):
return self.handle.info_card()
#
- # node commands
- #
-
- def node_add_macaddr(self, iface=0, macaddr=None):
- return self.handle.node_addmacaddr(iface=iface, macaddr=macaddr)
-
- def node_rm_macaddr(self, iface=0, macaddr=None):
- return self.handle.node_rmmacaddr(iface=iface, macaddr=macaddr)
-
- #
# fabric info commands
#