Return the ip of the first guest interface For use with routers not vpcrouters
(self)
| 75 | return guest_interface |
| 76 | |
| 77 | def get_guest_ip(self): |
| 78 | """ |
| 79 | Return the ip of the first guest interface |
| 80 | For use with routers not vpcrouters |
| 81 | """ |
| 82 | ip = self.get_guest_if() |
| 83 | if ip: |
| 84 | return ip.get_ip() |
| 85 | return None |
| 86 | |
| 87 | def get_guest_netmask(self): |
| 88 | """ |