OSPF配置网络拓扑:一台国内服务器A,两台境外服务器B和C A 123456789101112131415161718192021222324252627282930313233343536log syslog all;debug protocols all;router id 172.16.0.3prprotocol static { # Bypass addresses here route 1.0.0.1/32 via "eth0";}protocol kernel { ipv4 { export all; } ipv6 { export all; }}protocol ospf v2 hkwepc { ipv4 { export none; import where net !~ 172.16.0.0/16; } ipv6 { export none; import where net !~ fdff:520::/32; } area 172.16.4.0 { interface "hkwepc" { cost 5; } }} B - hkwepc 12345678910111213141516171819202122232425262728log syslog all;debug protocols all;router id 172.16.4.1;protocol static { # blocked addresses here route 1.0.0.1/32 via "eth0"; route 1.1.1.1/32 via "eth0"; route 8.8.8.8/32 via "eth0"; route 8.8.4.4/32 via "eth0";}protocol ospf v2 hkwepc { ipv4 { export static; import none; } ipv6 { export static; import none; } area 172.16.4.0 { interface "wgcn" { cost 5; } }}