01-27-2025 04:13 PM
Here’s the high level:
router1 - taclane1— wan —taclane2 - router2
Traffic leaves router1, gets encrypted by tac1, travels across an isp, to tac2 and gets decrypted and the forwarded onto router2. So the encryption process I'd think would be transparent to the routers. Or that was my hope. Here is the config, interfaces from left to right.
router1
interface loopback0
ip address 1.1.1.1 255.255.255.255
Interface gig 0/1/0
ip address 192.168.100.1 255.255.255.252
ip ospf network point-to-point
ip ospf cost 1
ip ospf retransmit-interval 1
Router ospf 1
log-adjacency-changes detail
ttl-security all-interfaces
Network 192.168.100.0 0.0.0.3 area 0
Network 1.1.1.1 0.0.0.0 area 0
Taclane1
PT 192.168.100.2/30
CT 10.0.0.1/30
Taclane2
CT 10.0.0.2/30
PT 192.168.200.2/30
Router2
interface loopback0
ip address 2.2.2.2 255.255.255.255
Interface gig 0/1/0
ip address 192.168.200.1 255.255.255.252
ip ospf network point-to-point
ip ospf cost 1
ip ospf retransmit-interval 1
Router ospf 1
log-adjacency-changes detail
ttl-security all-interfaces
Network 192.168.200.0 0.0.0.3 area 0
Network 2.2.2.2 0.0.0.0 area 0
If these routers were connected id be seeing adjacency. Is this just not going to work?
Solved! Go to Solution.
01-27-2025 07:01 PM
It work if there is tunnel vpn
R1 AND R2 will form ospf over this tunnel
MHM
01-28-2025 02:20 AM
"Gre would work as well?"
It should as long as you have L3 connectivity between the two routers. I.e. if each router can ping the other router's taclane facing interface.
One possibly issue with both using a tunnel and/or possibly taclane is fragmentation and often loss of payload bandwidth.
01-27-2025 04:21 PM
Exactly which routers do you believe should be establishing adjacently with which routers?
If you're thinking adjacently should form between routers 1 and 2, not as they're configured.
01-27-2025 04:40 PM
Yes routers 1 and 2
What’s the issue
01-27-2025 06:37 PM
Besides they don't share a network, as noted by @Flavio Miranda it appears your crypto devices provide a L3 connection, not L2, and adjacent OSPF neighbors need the latter
However, possibly you could connect routers 1 and 2 using a tunnel.
01-27-2025 05:09 PM
Considering they would be connected by interface gig 0/1/0 on R1 and gig 0/1/0 on R2, they will not form adjacency as they are not on the same network.
It would be required either IP address 192.168.100.2 on Router 2 or 192.168.200.2 on Router1.
01-27-2025 05:13 PM
Awesome thank you.
01-27-2025 07:01 PM
It work if there is tunnel vpn
R1 AND R2 will form ospf over this tunnel
MHM
01-27-2025 08:05 PM
Gre would work as well?
01-27-2025 08:07 PM
Sure Yes
MHM
01-28-2025 02:20 AM
"Gre would work as well?"
It should as long as you have L3 connectivity between the two routers. I.e. if each router can ping the other router's taclane facing interface.
One possibly issue with both using a tunnel and/or possibly taclane is fragmentation and often loss of payload bandwidth.
01-28-2025 06:22 AM
Dropped the MTU to 1476 and it came up flawlessly on a GRE....thanks as always.
01-28-2025 06:36 AM
Two suggestions. . .
When you drop MTU, often much benefit to use tcp mss-adjust to drop mss by similar amount.
If you know the overhead for encryption, drop both mtu and mss to allow for it.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide