您好,登錄后才能下訂單哦!
說明:A公司的PC1所在網段192.168.1.0/24要和B公司PC2所在網段172.16.2.0/24建立GRE tunnel通信
配置思路:
1、R1與R2要能通信--R1和R2分別配置默認路由到ISP
2、新建tunnel端口,設置IP,雙方要在同一網段;配置source即公網出口IP和destination即對方公網出口ip
3、此時雙方tunnel已經建立起來了,需要建立路由,PC1網段到PC2網段,PC2網段到PC1網段,下一跳地址為對端ip;此時配置結束。
拓撲圖如下:
配置信息:
R1:
config t
ip route 0.0.0.0 0.0.0.0 100.1.1.2
int g0/1
no sh
ip add 100.1.1.1 255.255.255.252
exit
int f0/1
no sh
ip add 192.168.1.1 255.255.255.0
exit
int tunnel 0
no sh
ip add 10.10.10.1 255.255.255.0
tunnel source 100.1.1.1
tunnel destination 200.2.2.2
tunnel mode gre ip
exit
ip route 172.16.2.0 255.255.255.0 10.10.10.2
exit
ISP:
config t
int g0/1
no sh
ip add 100.1.1.2 255.255.255.252
exit
int g0/2
no sh
ip add 200.2.2.1 255.255.255.252
exit
R3:
config t
ip route 0.0.0.0 0.0.0.0 200.2.2.1
int g0/2
no sh
ip add 200.2.2.2 255.255.255.252
exit
int f0/1
no sh
ip add 172.16.2.1 255.255.255.0
exit
int tunnel 0
no sh
ip add 10.10.10.2 255.255.255.0
tunnel source 200.2.2.2
tunnel destination 100.1.1.1
tunnel mode gre ip
exit
ip route 192.168.1.0 255.255.255.0 10.10.10.2
exit
需要查看ping的過程,可開啟debug, debug ip packet
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。