Home
DevCentral
Search
Configure Global Search
Log In
Transactions
T2302
Change Details
Change Details
Old
New
Diff
We have two routers: - Router-002 = BACKUP - Router-003 = MASTER --> They share the same IP address (VIP) Normally : Only the MASTER should speak โ The BACKUP should remain silent โ But with CARP + OSPF: ๐ฅ BOTH speak at the same time OSPF allows routers to exchange information to determine the best route for network traffic. It works by regularly exchanging messages between routers to maintain an up-to-date view of the network. In an environment with two high-availability routers, OSPF can cause problems because both routers can send these messages simultaneously using the same IP address (VIP). This creates a conflict, as the network no longer knows which router is the correct one, resulting in unstable connections. `IPsec enforces a single secure association per VIP, preventing the BACKUP node from establishing a concurrent tunnel and thus avoiding conflicts.` `So IPsec must be configured on both nodes with required policies, ensuring that only the MASTER node can establish the GRE tunnel while the BACKUP is prevented from sending traffic.` -------------------- references : https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=166462
We have two routers: - Router-002 = BACKUP - Router-003 = MASTER --> They share the same IP address (VIP) Normally : Only the MASTER should speak โ The BACKUP should remain silent โ But with CARP + OSPF: ๐ฅ BOTH speak at the same time > OSPF allows routers to exchange information to determine the best route for network traffic. It works by regularly exchanging messages between routers to maintain an up-to-date view of the network. In an environment with two high-availability routers, OSPF can cause problems because both routers can send these messages simultaneously using the same IP address (VIP). This creates a conflict, as the network no longer knows which router is the correct one, resulting in unstable connections. `IPsec enforces a single secure association per VIP, preventing the BACKUP node from establishing a concurrent tunnel and thus avoiding conflicts.` `So IPsec must be configured on both nodes with required policies, ensuring that only the MASTER node can establish the GRE tunnel while the BACKUP is prevented from sending traffic.` -------------------- references : https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=166462
We have two routers: - Router-002 = BACKUP - Router-003 = MASTER --> They share the same IP address (VIP) Normally : Only the MASTER should speak โ The BACKUP should remain silent โ But with CARP + OSPF: ๐ฅ BOTH speak at the same time
>
OSPF allows routers to exchange information to determine the best route for network traffic. It works by regularly exchanging messages between routers to maintain an up-to-date view of the network. In an environment with two high-availability routers, OSPF can cause problems because both routers can send these messages simultaneously using the same IP address (VIP). This creates a conflict, as the network no longer knows which router is the correct one, resulting in unstable connections. `IPsec enforces a single secure association per VIP, preventing the BACKUP node from establishing a concurrent tunnel and thus avoiding conflicts.` `So IPsec must be configured on both nodes with required policies, ensuring that only the MASTER node can establish the GRE tunnel while the BACKUP is prevented from sending traffic.` -------------------- references : https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=166462
Continue