I have two sites where I setup layer 3 connectivity between the two and want to keep the traffic completely isolated. Each side has it's own VLAN with an access-list applied to it so only the two subnets can talk to each other. On one side I have a DHCP server that needs to give out addresses to both locations, but it's not working. I've setup the ip helper-address, but it doesn't seem to like it. From my research I think it has something to do with it blocking the broadcast, but I'm not sure.
I'm relatively new to ACLs and am not sure what to change while keeping all the traffic isolated. My configs are below.
Also, IP connectivity has been verified and both sides can see each other fine.
Site 1
---------
Site 2
----------
Thanks!
I'm relatively new to ACLs and am not sure what to change while keeping all the traffic isolated. My configs are below.
Also, IP connectivity has been verified and both sides can see each other fine.
Site 1
---------
Code:
interface Vlan3
ip address 192.168.201.1 255.255.255.0
ip access-group 105 in
ip access-group 105 out
#sh ip access-lists 105
Extended IP access list 105
10 permit ip 192.168.200.0 0.0.0.255 192.168.201.0 0.0.0.255
20 permit ip 192.168.200.0 0.0.0.255 192.168.200.0 0.0.0.255
30 permit ip 192.168.201.0 0.0.0.255 192.168.200.0 0.0.0.255
40 permit ip 192.168.201.0 0.0.0.255 192.168.201.0 0.0.0.255 (65429 matches)
50 deny ip any any (22996 matches)
Site 2
----------
Code:
interface Vlan3
ip address 192.168.200.1 255.255.255.0
ip access-group 105 in
ip access-group 105 out
ip helper-address 192.168.201.9
#sh ip access-lists 105
Extended IP access list 105
10 permit ip 192.168.200.0 0.0.0.255 192.168.201.0 0.0.0.255
20 permit ip 192.168.200.0 0.0.0.255 192.168.200.0 0.0.0.255 (3445 matches)
30 permit ip 192.168.201.0 0.0.0.255 192.168.200.0 0.0.0.255 (1 match)
40 permit ip 192.168.201.0 0.0.0.255 192.168.201.0 0.0.0.255
50 deny ip any any (5913 matches)