(self, device, ip)
| 142 | return "FIREWALL_%s" % ip |
| 143 | |
| 144 | def get_egress_chain(self, device, ip): |
| 145 | if self.is_vpc(): |
| 146 | return "ACL_OUTBOUND_%s" % device |
| 147 | else: |
| 148 | return "FW_EGRESS_RULES" |
| 149 | |
| 150 | def get_egress_table(self): |
| 151 | if self.is_vpc(): |