diff options
| author | Christian Poessinger <christian@poessinger.com> | 2019-09-13 20:54:12 +0200 | 
|---|---|---|
| committer | Christian Poessinger <christian@poessinger.com> | 2019-09-13 20:54:12 +0200 | 
| commit | 7f491ffb8fd9d3ca8d6d6b6571dec262cc8fec01 (patch) | |
| tree | 450125eb2a9351253ef08bdc14eb7df329fff11a /python | |
| parent | 2e9ed5ad782fb632f3a0bb026cd3a566ab3862d4 (diff) | |
| download | vyos-1x-7f491ffb8fd9d3ca8d6d6b6571dec262cc8fec01.tar.gz vyos-1x-7f491ffb8fd9d3ca8d6d6b6571dec262cc8fec01.zip | |
Python/ifconfig: T1557: bonding: fix class name in comments
Diffstat (limited to 'python')
| -rw-r--r-- | python/vyos/ifconfig.py | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/python/vyos/ifconfig.py b/python/vyos/ifconfig.py index 62bf94d79..7cb5ebe78 100644 --- a/python/vyos/ifconfig.py +++ b/python/vyos/ifconfig.py @@ -1086,7 +1086,7 @@ class BondIf(EthernetIf):          The default value is layer2          Example: -        >>> from vyos.ifconfig import Interface +        >>> from vyos.ifconfig import BondIf          >>> BondIf('bond0').xmit_hash_policy = 'layer2+3'          >>> BondIf('bond0').proxy_arp          '1' @@ -1130,7 +1130,7 @@ class BondIf(EthernetIf):          The default value is no IP addresses.          Example: -        >>> from vyos.ifconfig import Interface +        >>> from vyos.ifconfig import BondIf          >>> BondIf('bond0').arp_interval = '100'          >>> BondIf('bond0').arp_interval          '100' @@ -1171,7 +1171,7 @@ class BondIf(EthernetIf):          The default value is no IP addresses.          Example: -        >>> from vyos.ifconfig import Interface +        >>> from vyos.ifconfig import BondIf          >>> BondIf('bond0').arp_ip_target = '192.0.2.1'          >>> BondIf('bond0').arp_ip_target          '192.0.2.1' @@ -1184,7 +1184,7 @@ class BondIf(EthernetIf):          Enslave physical interface to bond.          Example: -        >>> from vyos.ifconfig import Interface +        >>> from vyos.ifconfig import BondIf          >>> BondIf('bond0').add_port('eth0')          >>> BondIf('bond0').add_port('eth1')          """ @@ -1201,7 +1201,7 @@ class BondIf(EthernetIf):          Remove physical port from bond          Example: -        >>> from vyos.ifconfig import Interface +        >>> from vyos.ifconfig import BondIf          >>> BondIf('bond0').del_port('eth1')          """          return self._write_sysfs('/sys/class/net/{}/bonding/slaves' @@ -1212,7 +1212,7 @@ class BondIf(EthernetIf):          Return a list with all configured slave interfaces on this bond.          Example: -        >>> from vyos.ifconfig import Interface +        >>> from vyos.ifconfig import BondIf          >>> BondIf('bond0').get_slaves()          ['eth1', 'eth2']          """ @@ -1253,7 +1253,7 @@ class BondIf(EthernetIf):          balance-alb mode.          Example: -        >>> from vyos.ifconfig import Interface +        >>> from vyos.ifconfig import BondIf          >>> BondIf('bond0').primary = 'eth2'          >>> BondIf('bond0').primary          'eth2' @@ -1295,7 +1295,7 @@ class BondIf(EthernetIf):          slaves          Example: -        >>> from vyos.ifconfig import Interface +        >>> from vyos.ifconfig import BondIf          >>> BondIf('bond0').mode = '802.3ad'          >>> BondIf('bond0').mode          '802.3ad' | 
