(self)
| 110 | return None |
| 111 | |
| 112 | def get_ipv6(self): |
| 113 | xml = self._XMLDesc() |
| 114 | int_ipv6_ip = util.get_xml_path(xml, "/interface/protocol[2]/ip/@address") |
| 115 | int_ipv6_mask = util.get_xml_path(xml, "/interface/protocol[2]/ip/@prefix") |
| 116 | if not int_ipv6_ip or not int_ipv6_mask: |
| 117 | return None |
| 118 | else: |
| 119 | return int_ipv6_ip + '/' + int_ipv6_mask |
| 120 | |
| 121 | def get_bridge(self): |
| 122 | if self.get_type() == 'bridge': |