日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

JUNOS Olive GRE Tunnel Configuration

發(fā)布時間:2023/12/15 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 JUNOS Olive GRE Tunnel Configuration 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

still same topology used as previous posts. Added GRE tunnel in the topology with two new OSPF areas.

version 10.4R3.4;
system {
? ? backup-router 10.50.2.1;
? ? root-authentication {
? ? ? ? encrypted-password “$1$MsDQp3dk$uxdtlK7LKSqp4mHjg/zxZ1”; ## SECRET-DATA
? ? }
? ? login {
? ? ? ? user test {
? ? ? ? ? ? uid 2000;
? ? ? ? ? ? class super-user;
? ? ? ? ? ? authentication {
? ? ? ? ? ? ? ? encrypted-password “$1$XKhC35Ei$9ED4o245Ts.jyQ2BqeeQR/”; ## SECRET-DATA
? ? ? ? ? ? }
? ? ? ? }
? ? }
? ? services {
? ? ? ? ftp;
? ? ? ? telnet;
? ? ? ? web-management {
? ? ? ? ? ? http {
? ? ? ? ? ? ? ? port 80;
? ? ? ? ? ? }
? ? ? ? }
? ? }
? ? syslog {
? ? ? ? user * {
? ? ? ? ? ? any emergency;
? ? ? ? }
? ? ? ? file messages {
? ? ? ? ? ? any notice;
? ? ? ? ? ? authorization info;
? ? ? ? }
? ? ? ? file interactive-commands {
? ? ? ? ? ? interactive-commands any;
? ? ? ? }
? ? }
}
logical-systems {
? ? r1 {
? ? ? ? interfaces {
? ? ? ? ? ? em1 {
? ? ? ? ? ? ? ? unit 13 {
? ? ? ? ? ? ? ? ? ? vlan-id 13;
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.13.1/24;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? unit 15 {
? ? ? ? ? ? ? ? ? ? vlan-id 15;
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.15.1/24;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? gre {
? ? ? ? ? ? ? ? unit 1 {
? ? ? ? ? ? ? ? ? ? description “GRE Tunnel”;
? ? ? ? ? ? ? ? ? ? tunnel {
? ? ? ? ? ? ? ? ? ? ? ? source 10.1.13.1;
? ? ? ? ? ? ? ? ? ? ? ? destination 10.1.13.3;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.254.0.1/30;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? lo0 {
? ? ? ? ? ? ? ? unit 1 {
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.1.1/32;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? protocols {
? ? ? ? ? ? ospf {
? ? ? ? ? ? ? ? area 0.0.0.0 {
? ? ? ? ? ? ? ? ? ? interface lo0.1;
? ? ? ? ? ? ? ? ? ? inactive: interface em1.13;
? ? ? ? ? ? ? ? ? ? interface em1.15;
? ? ? ? ? ? ? ? ? ? interface gre.1;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? routing-options {
? ? ? ? ? ? router-id 10.10.1.1;
? ? ? ? }
? ? }
? ? r2 {
? ? ? ? interfaces {
? ? ? ? ? ? em2 {
? ? ? ? ? ? ? ? unit 24 {
? ? ? ? ? ? ? ? ? ? vlan-id 24;
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.24.2/24;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? unit 25 {
? ? ? ? ? ? ? ? ? ? vlan-id 25;
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.25.2/24;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? gre {
? ? ? ? ? ? ? ? unit 3 {
? ? ? ? ? ? ? ? ? ? tunnel {
? ? ? ? ? ? ? ? ? ? ? ? source 10.1.24.2;
? ? ? ? ? ? ? ? ? ? ? ? destination 10.1.24.4;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.253.0.1/30;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? lo0 {
? ? ? ? ? ? ? ? unit 2 {
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.1.2/32;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? protocols {
? ? ? ? ? ? ospf {
? ? ? ? ? ? ? ? area 0.0.0.0 {
? ? ? ? ? ? ? ? ? ? interface em2.25;
? ? ? ? ? ? ? ? ? ? interface lo0.2;
? ? ? ? ? ? ? ? ? ? interface gre.3;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? routing-options {
? ? ? ? ? ? router-id 10.1.1.2;
? ? ? ? }
? ? }
? ? r3 {
? ? ? ? interfaces {
? ? ? ? ? ? em3 {
? ? ? ? ? ? ? ? unit 13 { ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? vlan-id 13;
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.13.3/24;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? unit 36 {
? ? ? ? ? ? ? ? ? ? vlan-id 36;
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.36.3/24;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? gre {
? ? ? ? ? ? ? ? unit 2 {
? ? ? ? ? ? ? ? ? ? tunnel {
? ? ? ? ? ? ? ? ? ? ? ? source 10.1.13.3;
? ? ? ? ? ? ? ? ? ? ? ? destination 10.1.13.1;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.254.0.2/30;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? lo0 {
? ? ? ? ? ? ? ? unit 3 {
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.1.3/32;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? protocols {
? ? ? ? ? ? ospf {
? ? ? ? ? ? ? ? area 0.0.0.0 {
? ? ? ? ? ? ? ? ? ? inactive: interface em3.13;
? ? ? ? ? ? ? ? ? ? interface em3.36;
? ? ? ? ? ? ? ? ? ? interface lo0.3;
? ? ? ? ? ? ? ? ? ? interface gre.2;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? routing-options {
? ? ? ? ? ? router-id 10.1.1.3;
? ? ? ? }
? ? }
? ? r4 {
? ? ? ? interfaces {
? ? ? ? ? ? em4 {
? ? ? ? ? ? ? ? unit 24 {
? ? ? ? ? ? ? ? ? ? vlan-id 24;
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.24.4/24;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? unit 46 {
? ? ? ? ? ? ? ? ? ? vlan-id 46;
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.46.4/24;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? gre {
? ? ? ? ? ? ? ? unit 4 {
? ? ? ? ? ? ? ? ? ? tunnel {
? ? ? ? ? ? ? ? ? ? ? ? source 10.1.24.4;
? ? ? ? ? ? ? ? ? ? ? ? destination 10.1.24.2;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.253.0.2/30;
? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? lo0 {
? ? ? ? ? ? ? ? unit 4 {
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.1.4/32;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? protocols {
? ? ? ? ? ? ospf {
? ? ? ? ? ? ? ? area 0.0.0.0 {
? ? ? ? ? ? ? ? ? ? interface em4.46;
? ? ? ? ? ? ? ? ? ? interface lo0.4;
? ? ? ? ? ? ? ? ? ? interface gre.4;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? routing-options {
? ? ? ? ? ? router-id 10.1.1.4;
? ? ? ? }
? ? }
? ? r5 {
? ? ? ? interfaces {
? ? ? ? ? ? em5 {
? ? ? ? ? ? ? ? unit 15 {
? ? ? ? ? ? ? ? ? ? vlan-id 15;
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.15.5/24;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? unit 25 {
? ? ? ? ? ? ? ? ? ? vlan-id 25;
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.25.5/24;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? lo0 {
? ? ? ? ? ? ? ? unit 5 {
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.1.5/32;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? protocols {
? ? ? ? ? ? ospf {
? ? ? ? ? ? ? ? export ex_filter_routes_5;
? ? ? ? ? ? ? ? area 0.0.0.0 {
? ? ? ? ? ? ? ? ? ? interface em5.15;
? ? ? ? ? ? ? ? ? ? interface em5.25;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? area 0.0.0.10 {
? ? ? ? ? ? ? ? ? ? interface lo0.5;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? policy-options {
? ? ? ? ? ? policy-statement ex_filter_routes_5 {
? ? ? ? ? ? ? ? from {
? ? ? ? ? ? ? ? ? ? route-filter 10.1.1.5/32 exact;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? then accept;
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? routing-options {
? ? ? ? ? ? router-id 10.1.1.5;
? ? ? ? } ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? }
? ? r6 {
? ? ? ? interfaces {
? ? ? ? ? ? em6 {
? ? ? ? ? ? ? ? unit 36 {
? ? ? ? ? ? ? ? ? ? vlan-id 36;
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.36.6/24;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? unit 46 {
? ? ? ? ? ? ? ? ? ? vlan-id 46;
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.46.6/24;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? lo0 {
? ? ? ? ? ? ? ? unit 6 {
? ? ? ? ? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? ? ? ? ? address 10.1.1.6/32;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? protocols {
? ? ? ? ? ? ospf {
? ? ? ? ? ? ? ? area 0.0.0.0 {
? ? ? ? ? ? ? ? ? ? interface em6.36;
? ? ? ? ? ? ? ? ? ? interface em6.46;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? area 0.0.0.20 {
? ? ? ? ? ? ? ? ? ? interface lo0.6;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? routing-options {
? ? ? ? ? ? router-id 10.1.1.6;
? ? ? ? }
? ? }
}
interfaces {
? ? em0 {
? ? ? ? unit 0 {
? ? ? ? ? ? family inet {
? ? ? ? ? ? ? ? address 10.50.2.230/24;
? ? ? ? ? ? }
? ? ? ? }
? ? }
? ? em1 {
? ? ? ? vlan-tagging;
? ? }
? ? em2 {
? ? ? ? vlan-tagging;
? ? }
? ? em3 {
? ? ? ? vlan-tagging;
? ? }
? ? em4 {
? ? ? ? vlan-tagging;
? ? }
? ? em5 {
? ? ? ? vlan-tagging;
? ? }
? ? em6 {
? ? ? ? vlan-tagging;
? ? }
}
routing-options {
? ? static { ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? route 0.0.0.0/0 {
? ? ? ? ? ? next-hop 10.50.2.1;
? ? ? ? ? ? retain;
? ? ? ? ? ? no-readvertise;
? ? ? ? }
? ? }
}

——————————————

test# run show route logical-system r5?

inet.0: 15 destinations, 15 routes (15 active, 0 holddown, 0 hidden)
+ = Active Route, – = Last Active, * = Both


10.1.1.1/32 ? ? ? ?*[OSPF/10] 00:01:12, metric 1
? ? ? ? ? ? ? ? ? ? > to 10.1.15.1 via em5.15
10.1.1.2/32 ? ? ? ?*[OSPF/10] 00:01:16, metric 1
? ? ? ? ? ? ? ? ? ? > to 10.1.25.2 via em5.25
10.1.1.3/32 ? ? ? ?*[OSPF/10] 00:01:12, metric 2
? ? ? ? ? ? ? ? ? ? > to 10.1.15.1 via em5.15
10.1.1.4/32 ? ? ? ?*[OSPF/10] 00:01:16, metric 2
? ? ? ? ? ? ? ? ? ? > to 10.1.25.2 via em5.25
10.1.1.5/32 ? ? ? ?*[Direct/0] 00:12:06
? ? ? ? ? ? ? ? ? ? > via lo0.5
10.1.1.6/32 ? ? ? ?*[OSPF/10] 00:01:11, metric 3
? ? ? ? ? ? ? ? ? ? > to 10.1.15.1 via em5.15
? ? ? ? ? ? ? ? ? ? ? to 10.1.25.2 via em5.25
10.1.15.0/24 ? ? ? *[Direct/0] 00:01:57
? ? ? ? ? ? ? ? ? ? > via em5.15
10.1.15.5/32 ? ? ? *[Local/0] 00:01:57
? ? ? ? ? ? ? ? ? ? ? Local via em5.15
10.1.25.0/24 ? ? ? *[Direct/0] 00:01:57
? ? ? ? ? ? ? ? ? ? > via em5.25
10.1.25.5/32 ? ? ? *[Local/0] 00:01:57
? ? ? ? ? ? ? ? ? ? ? Local via em5.25
10.1.36.0/24 ? ? ? *[OSPF/10] 00:01:12, metric 3
? ? ? ? ? ? ? ? ? ? > to 10.1.15.1 via em5.15
10.1.46.0/24 ? ? ? *[OSPF/10] 00:01:16, metric 3
? ? ? ? ? ? ? ? ? ? > to 10.1.25.2 via em5.25
10.253.0.0/30 ? ? ?*[OSPF/10] 00:01:16, metric 2
? ? ? ? ? ? ? ? ? ? > to 10.1.25.2 via em5.25
10.254.0.0/30 ? ? ?*[OSPF/10] 00:01:12, metric 2
? ? ? ? ? ? ? ? ? ? > to 10.1.15.1 via em5.15
224.0.0.5/32 ? ? ? *[OSPF/10] 00:12:08, metric 1
? ? ? ? ? ? ? ? ? ? ? MultiRecv

[edit]
test#

test# run show ospf neighbor logical-system r1?
Address ? ? ? ? ?Interface ? ? ? ? ? ? ?State ? ? ID ? ? ? ? ? ? ? Pri ?Dead
10.1.15.5 ? ? ? ?em1.15 ? ? ? ? ? ? ? ? Full ? ? ?10.1.1.5 ? ? ? ? 128 ? ?35
10.254.0.2 ? ? ? gre.1 ? ? ? ? ? ? ? ? ?Full ? ? ?10.1.1.3 ? ? ? ? 128 ? ?34

[edit]
test# run show ospf neighbor logical-system r2 ? ?
Address ? ? ? ? ?Interface ? ? ? ? ? ? ?State ? ? ID ? ? ? ? ? ? ? Pri ?Dead
10.1.25.5 ? ? ? ?em2.25 ? ? ? ? ? ? ? ? Full ? ? ?10.1.1.5 ? ? ? ? 128 ? ?34
10.253.0.2 ? ? ? gre.3 ? ? ? ? ? ? ? ? ?Full ? ? ?10.1.1.4 ? ? ? ? 128 ? ?38

[edit]
test#

Share this:

  • More

Like this:

Like Loading...

總結

以上是生活随笔為你收集整理的JUNOS Olive GRE Tunnel Configuration的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。

主站蜘蛛池模板: 美丽的小蜜桃2:美丽人生 | 玖玖玖精品 | 国产a级片视频 | 在线免费观看日韩视频 | 超碰在线观看av | 美女视频黄频视频大全 | 手机av在线免费 | 欧美xxxxx高潮喷水麻豆 | 我要操婊 | 国精产品一区一区三区mba下载 | 午夜有码 | 伊人影院在线观看视频 | 免费黄色看片 | 欧美亚洲在线播放 | 日韩一卡二卡三卡 | 在线看片福利 | 97精品久久 | 欧美精品系列 | 村上凉子av| 日韩中出在线 | 亚洲a黄| 天天成人| 九九热精品视频在线观看 | 国产原创剧情av | 99久久久无码国产精品性黑人 | 福利91| 青青草原亚洲视频 | 一道本在线播放 | 色综合综合| 黄色网页在线看 | 欧美日韩欧美日韩在线观看视频 | 亚洲国产精一区二区三区性色 | 免费黄网站在线 | 国产精品久久久精品三级 | 国产激情在线视频 | a级免费视频 | 国产精品极品白嫩在线 | 日韩欧美片 | 精品无码国产污污污免费网站 | 亚洲AV综合色区国产精品天天 | 国产在线视频福利 | 日韩国产成人在线 | 男女免费毛片 | 雷电将军和丘丘人繁衍后代视频 | 亚洲一区二区三区午夜 | 亚洲春色一区二区三区 | 久射久| 久久久中文| 一本一道波多野结衣一区二区 | 免费看一级黄色片 | 欧美中文在线观看 | 日韩亚洲一区二区三区 | 国产亚洲av片在线观看18女人 | 欧美日韩国产黄色 | 国产亚洲精久久久久久无码77777 | 国产爆操视频 | 精品一区二区三区入口 | 国产精品熟女视频 | 美女131爽爽爽 | 大香蕉精品一区 | 精品一区二区三区在线播放 | 国产偷拍一区二区 | 亚洲天堂视频网 | 亚洲综合色一区二区 | 国产欧美综合视频 | 毛片视频软件 | 日日夜夜免费视频 | 中文字幕在线亚洲 | 特黄三级 | 国产一级片免费视频 | 亚洲精品一 | 欧美日韩中文在线视频 | 日韩亚洲视频 | 正在播放adn156松下纱荣子 | 小泽玛利亚一区二区三区视频 | 免费的理伦片在线播放 | 中文字幕不卡在线 | 黄色一级大片在线观看 | 无码国产精品一区二区免费16 | 一女三黑人理论片在线 | 国产精品无码久久av | 日韩特级黄色片 | 少妇太紧太爽又黄又硬又爽小说 | 九九精品免费视频 | 欧美一本在线 | 天堂资源网 | 中文久久精品 | 国产精品91视频 | 女王人厕视频2ⅴk | 深夜精品福利 | 日韩亚洲精品在线 | 欧美日韩国产综合网 | 久久亚洲综合 | 最近最新mv字幕观看 | 国产网红女主播精品视频 | 黄色在线免费观看 | 国产免费视频 | 色多多在线看 | 一区二区在线看 |