ip unnumbered acls
Having a bit of a tech debate at work and wanted to get y'alls opinion on it.
When deploying ip unnumbered on dot1q subinterfaces like so [config is sanitized for the web]:
interface loopback123
ip vrf forwarding testVRF
ip address 192.168.1.1 255.255.0.0
interface GigabitEthernet1/1.500
encapsulation dot1q 500
ip vrf forwarding testVRF
ip address unnumbered loopback123
interface GigabitEthernet1/1.501
encapsulation dot1q 501
ip vrf forwarding testVRF
ip address unnumbered loopback123
interface GigabitEthernet1/1.502
encapsulation dot1q 502
ip vrf forwarding testVRF
ip address unnumbered loopback123
.....and so on for the dot1q subinterfaces
Where would you put the acl to restrict traffic? On the subinterface or on the loopback and why?
When deploying ip unnumbered on dot1q subinterfaces like so [config is sanitized for the web]:
interface loopback123
ip vrf forwarding testVRF
ip address 192.168.1.1 255.255.0.0
interface GigabitEthernet1/1.500
encapsulation dot1q 500
ip vrf forwarding testVRF
ip address unnumbered loopback123
interface GigabitEthernet1/1.501
encapsulation dot1q 501
ip vrf forwarding testVRF
ip address unnumbered loopback123
interface GigabitEthernet1/1.502
encapsulation dot1q 502
ip vrf forwarding testVRF
ip address unnumbered loopback123
.....and so on for the dot1q subinterfaces
Where would you put the acl to restrict traffic? On the subinterface or on the loopback and why?
Cisco was my first networking love, but my "other" router is a Mikrotik...
Comments
Personally I'd rather have one per interface. Makes it easier to clean up if an interface goes away.
Thanks for the response...not sure if it will block the traffic through the router with the ACL on the loop or not....will let y'all know!