網路型別實驗

2021-10-19 10:46:08 字數 4062 閱讀 1608

②r4與r5間使用hdlc封裝;

③r1/2/4構建乙個mgre環境,其中r1為中心站點;

④r1與r3為點到點gre;

⑤整個私有網路基於rip全網可達,且各pc可訪問isp的環迴。

(1)isp介面ip配置:

int s3/0/0

ip ad 15.1.1.2 24

qint s3/0/1

ip ad 25.1.1.2 24

qint s4/0/0

ip ad 45.1.1.2 24

qint s4/0/1

ip ad 35.1.1.2 24

qint lo0

ip ad 5.5.5.5 24

(2)dhcp配置:

【r1】

dhcp enable

ip pool r1

network 192.168.1.0 mask 24

gateway-list 192.168.1.1

int g0/0/1

ip ad 192.168.1.1 24

dhcp select global

【r2】

dhcp enable

ip pool r2

network 192.168.2.0 mask 24

gateway-list 192.168.2.1

int g0/0/0

ip ad 192.168.2.1 24

dhcp select global

【r3】

dhcp enable

ip pool r3

network 192.168.3.0 mask 24

gateway-list 192.168.3.1

int g0/0/1

ip ad 192.168.3.1 24

dhcp select global

【r4】

dhcp enable

ip pool r4

network 192.168.4.0 mask 24

gateway-list 192.168.4.1

int g0/0/0

ip ad 192.168.4.1 24

dhcp select global

(3)pap認證配置:

【isp】

aaalocal-user r1 password cipher hcip666

local-user r1 service-type ppp

int s3/0/0

link-protocol ppp

ppp authentication-mode pap

【r1】

int s4/0/0

ip ad 15.1.1.1 24

link-protocol ppp

ppp pap local-user r1 password cipher hcip666

(4)chap認證配置:

【isp】

aaalocal-user r2 password cipher ccip666

local-user r2 service-type ppp

int s3/0/1

ppp authentication-mode chap

【r2】

int s4/0/0

ip ad 25.1.1.1 24

ppp chap user r2

ppp chap password cipher ccip666

(5)hdlc配置:

【isp】

int s4/0/0

link-protocol hdlc

y【r4】

int s4/0/0

link-protocol hdlc

y(6)mgre配置:

【r1】

int tunnel 0/0/0

ip ad 10.1.1.1 24

tunnel-protocol gre p2mp

source 15.1.1.1

nhrp entry multicast dynamic //本地成為nhrp中心,同時進行偽廣播

nhrp network-id 100

【r2】

int tunnel 0/0/0

ip ad 10.1.1.2 24

tunnel-protocol gre p2mp

source s4/0/0

nhrp network-id 100

nhrp entry 10.1.1.1 15.1.1.1 register //分支站點去中心站點註冊

【r4】

int s4/0/0

ip ad 45.1.1.1 24

int tunnel 0/0/0

ip ad 10.1.1.4 24

tunnel-protocol gre p2mp

source s4/0/0

nhrp network-id 100

nhrp entry 10.1.1.1 15.1.1.1 register

(7)點到點gre配置:

【r1】

int tunnel 0/0/1

ip ad 20.1.1.1 24

tunnel-protocol gre

source 15.1.1.1

destination 35.1.1.1

【r3】

int s4/0/0

ip ad 35.1.1.1 24

int tunnel 0/0/1

ip ad 20.1.1.2 24

tunnel-protocol gre

source 35.1.1.1

destination 15.1.1.1

(8)路由配置:

【r1】【r2】【r3】【r4】

ip route-static 0.0.0.0 0.0.0.0 s4/0/0

【r1】

rip 1

version 2

undo summary

network 192.168.1.0

network 10.0.0.0

network 20.0.0.0

int tunnel 0/0/0

undo rip split-horizon //關閉rip水平分割機制

【r2】

rip 1

version 2

undo summary

network 192.168.2.0

network 10.0.0.0

【r3】

rip 1

version 2

undo summary

network 192.168.3.0

network 20.0.0.0

【r4】

rip 1

version 2

undo summary

network 192.168.4.0

network 10.0.0.0

(9)nat配置:

【r1】【r2】【r3】【r4】

acl 2000

rule permit source 192.168.1/2/3/4.0 0.0.0.255

int s4/0/0

nat outbound 2000

pc端ping測試:

網路型別實驗

實驗要求 實驗思路 拓撲如下 1.路由1234做dhcp服務使pc自動獲取ip。2.15之間使用ppp的pap認證,5為主。3.25之間使用chap認證,5為主。4.35之間使用hdlc 5.123之間構建mgre,1為主,為點到多點。23為點到點 6.1234使用rip協議 7.5建立環迴,123...

網路型別 網路型別

在網路行業裡我們經常聽到廣域網 區域網 公網 私網 內網等等網路術語。這篇文章帶你簡單了解一下最最基本的一些網路型別。一 區域網 local area network,lan 也可稱作內網。按照地理覆蓋位置來說,它的覆蓋範圍一般是方圓幾千公尺之內,特點是分布地區範圍有限,可大可小,大到一棟建築樓 與...

網路配置實驗

1.centos6 虛擬機器遷移後網絡卡名更改 2.ip位址指定 3.配置閘道器 1 修改配置檔案 etc sysconfig network scripts ifcfg eth0中gateway 指定。etc sysconfig network中新增gateway 兩項衝突時,以前者為準。2 重啟...