国产一级一区二区_segui88久久综合9999_97久久夜色精品国产_欧美色网一区二区

掃一掃
關注微信公眾號

大型網絡的配置實例
2006-04-20   網絡

說明
這是一個比較綜合的實例,從拓撲圖上可以看出,它所包含的設備和技術。以下對這個例子作些說明。

對于內部局域網,選用Cisco的Catalyst 6506作為中心交換機,二級交換采用Catalyst 3500,同時為了說明Trunk,又加了一個Catalyst 2900 作為三級交換,對于終 端連接用了Catalyst 1900交換機,這樣就可以在Catalyst 6506與Catalyst 3500之間以及Catalyst 3500與Catalyst 2900 之間建立Trunk,實現跨交換機的VLAN。

注:Catalyst 2900系列如果要實現Trunk,軟件必須是企業版的。
對于外連上,主要是專線連接和撥號訪問,當然種類比較多.包括了DDN、 ISDN、 Frame Relay、 E1 線路等。
本例給出設備的基本配置。
對于多設備的連接問題,值得注意的是路由問題,本實例外連部分采用靜態路由而內部局域網采用動態路由. 在本例的幀中繼配置中,運用了IP Unnumbered ,可以節省地址資源,有興趣可以注意一下。

網絡拓撲:
"點擊在新窗口查看全圖
CTRL+鼠標滾輪放大或縮小"screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='點擊在新窗口查看全圖 CTRL+鼠標滾輪放大或縮小';}" border=0 resized="true">
VLAN劃分問題
對于交換設備本例中劃到VLAN 1中,而對于外連設備的所有以太網端口,均劃到VLAN 2中,下面給出各VLAN的名稱和網關地址,本例劃分8個VLAN.
VLAN ID VLAN Name Gateway
VLAN 1 Bluestudy 1 10.1.0.1/16
VLAN 2 Bluestudy 2 10.2.0.1/16
VLAN 3 Bluestudy 3 10.3.0.1/16
VLAN 4 Bluestudy 4 10.4.0.1/16
VLAN 5 Bluestudy 5 10.5.0.1/16
VLAN 6 Bluestudy 6 10.6.0.1/16
VLAN 7 Bluestudy 7 10.7.0.1/16
VLAN 8 Bluestudy 8 10.8.0.1/16

Catalyst 6506 的配置
Enter password:
enable
Enter password:
config t
set system name Bluestudy
set time 10/30/2000 9:30:00
set password
set enablepass
set interface sc0 10.1.0.2/16
set ip route default 10.1.0.1
set ip dns server 10.1.0.100
set ip dns domain bluestudy.com
set ip dns enable
set vtp domain bluestudy mode server
set vlan 1 name Bluestudy 1
set vlan 2 name Bluestudy 2
set vlan 3 name Bluestudy 3
set vlan 4 name Bluestudy 4
set vlan 5 name Bluestudy 5
set vlan 6 name Bluestudy 6
set vlan 7 name Bluestudy 7
set vlan 8 name Bluestudy 8
set port negotiation 2/1-8 enable
set port name 2/1-8 GEC 802.1Q Trunk
set trunk 2/1-8 desirable dot1q
set port speed 2/1-8 1000
set vlan 1 3/1-48
對于6506的交換機方面的配置只需做出Trunk即可,因為要實現跨交換機之間的虛網,下面配置6506的路由模塊,因為6506的路由模塊現在與管理引擎模塊集成在了一起,所以,默認命令是:Session 15 ,詳情請見 6506 路由設置.
Catalyst 6506RSM模塊的配置
(enable) session 15
Trying Router-15...
Connected to Router-15.
Escape character is '^]'.
enable
configure terminal
hostname bluestudy
enable password password
line vty 0 6
password secret_word
ip domain-name bluestudy.com
ip name-server 10.1.0.100
interface vlan 1
ip address 10.1.0.1 255.255.0.0
no shutdown
interface vlan 2
ip address 10.2.0.1 255.255.0.0
no shutdown
interface vlan 3
ip address 10.3.0.1 255.255.0.0
no shutdown
interface vlan 4
ip address 10.4.0.1 255.255.0.0
no shutdown
interface vlan 5
ip address 10.5.0.1 255.255.0.0
no shutdown
interface vlan 6
ip address 10.6.0.1 255.255.0.0
no shutdown
interface vlan 7
ip address 10.7.0.1 255.255.0.0
no shutdown
interface vlan 8
ip address 10.8.0.1 255.255.0.0
no shutdown
router rip
version 2
network 10.0.0.0
ip route 0.0.0.0 0.0.0.0 10.2.0.12
ip route 192.168.2.0 255.255.255.0 10.2.0.13
ip route 192.168.3.0 255.255.255.240 10.2.0.11
ip route 192.168.4.0 255.255.255.0 10.2.0.11
ip route 192.168.5.0 255.255.255.0 10.2.0.11
ip route 192.168.6.0 255.255.255.0 10.2.0.11
copy running-config startup-config
Building configuration...
[OK]
這里給出的是單純的命令行,略去了一些默認狀況的設置.

Catalyst 3500 的配置
!
version 12.0
no service pad
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname bluestudy
!
enable password password
!
username bluestudy password password
username test password password
!
省略端口的顯示
!
interface GigabitEthernet0/1
switchport trunk encapsulation dot1q
switchport mode trunk
!
interface GigabitEthernet0/2
!
interface VLAN1
ip address 10.1.0.4 255.255.0.0
ip helper-address 10.1.0.100
ip directed-broadcast
no ip route-cache
!
ip default-gateway 10.1.0.1
interface Ethernet1/1(與2900對接)
switchport trunk encapsulation dot1q
switchport mode trunk
!
interface Ethernet1/2(與1900 A對接)
switchport access VLAN 3
no shut
!
interface Ethernet1/3(與1900 B對接)
switchport access VLAN 4
no shut
!
snmp-server engineID local 000000090200000216BE4E80
snmp-server community public RO
snmp-server community private RW
snmp-server chassis-id 0x17
(打開簡單的網絡管理,便于以后,Cisco 網管軟件識別和管理)
!
line con 0
login local
transport input none
stopbits 1
line vty 0 4
login local
line vty 5 15
login
!
end

Catalyst 2900 的配置
2900的配置與3500的相似,命令如下
hostname bluestudy
!
enable password password
!
username bluestudy password password
username test password password
!
省略端口的顯示
!
interface Ethernet0/1(與3500對接)
switchport trunk encapsulation dot1q
switchport mode trunk
!
interface VLAN1
ip address 10.1.0.3 255.255.0.0
ip helper-address 10.1.0.100
ip directed-broadcast
no ip route-cache
!
ip default-gateway 10.1.0.1
!
interface Ethernet0/2(與1900 C對接)
switchport access VLAN 5
no shut
!
interface Ethernet0/3(與1900 D對接)
switchport access VLAN 6
no shut
!
snmp-server engineID local 000000090200000216BE4E80
snmp-server community public RO
snmp-server community private RW
snmp-server chassis-id 0x17
!
line con 0
login local
transport input none
stopbits 1
line vty 0 4
login local
line vty 5 15
login
!
end
Cisco Catalyst 1900 的配置
對于1900的配置就相對容易得多了
只需在enable 狀態下鍵入 Setup 就會進入配置向導
給出交換機的
IP地址:10.3.0.5
掩碼:255.255.0.0
網關:10.3.0.1
就可以了,另外應該打開簡單的網絡管理協議SNMP
snmp-server community public RO
snmp-server community private RW
即可

PIX 520A的基本配置
PIX Version 4.2(4)
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password password encrypted
passwd password encrypted
hostname pix_A
fixup protocol ftp 21
fixup protocol http 80
fixup protocol smtp 25
fixup protocol h323 1720
fixup protocol rsh 514
fixup protocol sqlnet 1521
names
no failover
failover timeout 0:00:00
failover ip address outside 0.0.0.0
failover ip address inside 0.0.0.0
pager lines 24
no logging console
logging monitor debugging
logging buffered debugging
no logging trap
logging facility 20
interface ethernet0 auto
interface ethernet1 auto
ip address outside 192.168.0.1 255.255.255.252
ip address inside 10.2.0.13 255.255.0.0
arp timeout 14400
nat (inside ) 0 192.168.0.0 255.255.255.252
rip outside passive
no rip outside default
no rip inside passive
rip inside default
route outside 192.168.2.0 255.255.255.0 192.168.0.2
route inside 0.0.0.0 0.0.0.0 10.2.0.1
timeout xlate 3:00:00 conn 1:00:00 udp 0:02:00
timeout rpc 0:10:00 h323 0:05:00
timeout uauth 0:05:00 absolut
esnmp-server community public RO

snmp-server community private RW
telnet 10.2.0.200 255.255.255.255
telnet timeout 15
mtu outside 1500
mtu inside 1500
floodguard 0


Cisco 2610A 的配置
Current configuration:
!
version 11.3
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname 2610A
!
enable password password
!
username bluestudy password password
no ip domain-lookup!
!
interface Ethernet0/0
ip address 192.168.0.2 255.255.255.252
no shut
!
interface Serial0/0
ip address 192.168.0.5 255.255.255.252
no shut
!
interface Serial0/1
no ip address
shutdown
!
ip route 0.0.0.0 0.0.0.0 192.168.0.1
ip route 192.168.2.0 255.255.255.0 192.168.0.6
!
snmp-server community public RO

snmp-server community private RW
!
line con 0
line aux 0
line vty 0 4
login local
!
no scheduler allocate
end
Cisco 1603的配置
 
 
Current configuration:
!
version 12.0
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname 1603
!
enable secret password
enable password password
!
memory-size iomem 25
ip subnet-zero
!
interface Serial0
ip address 192.168.0.6 255.255.255.252
no ip directed-broadcast
!
interface Ethernet0
ip address 192.168.2.1 255.255.255.0
no ip unreachables
no ip directed-broadcast
!
ip classless
ip route 0.0.0.0 0.0.0.0 s0
no ip http server
!
snmp-server community public RO

snmp-server community private RW

!
line con 0
password password
transport input none
line aux 0
line vty 0 4
password password
login
!
no scheduler allocate
end

PIX 520B的基本配置
PIX Version 4.2(4)
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password password encrypted
passwd password encrypted
hostname pix520_B
fixup protocol ftp 21
fixup protocol http 80
fixup protocol smtp 25
fixup protocol h323 1720
fixup protocol rsh 514
fixup protocol sqlnet 1521
names
no failover
failover timeout 0:00:00
failover ip address outside 0.0.0.0
failover ip address inside 0.0.0.0
pager lines 24
no logging console
no logging monitor
no logging buffered
no logging trap
logging facility 20
interface ethernet0 auto
interface ethernet1 auto
ip address outside 202.108.66.97 255.255.255.248
ip address inside 10.2.0.12 255.255.0.0
arp timeout 14400
global (outside) 1 202.108.66.100
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
no rip outside passive
no rip outside default
no rip inside passive
no rip inside default
route outside 0.0.0.0 0.0.0.0 202.109.77.98
timeout xlate 3:00:00 conn 1:00:00 udp 0:02:00
timeout rpc 0:10:00 h323 0:05:00
timeout uauth 0:05:00 absolute
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
telnet 10.2.0.200 255.255.255.255
telnet timeout 15
mtu outside 1500
mtu inside 1500
floodguard 0
Cisco 2610B 的配置
Current configuration:
!
version 11.3
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname 2610B
!
enable password password
!
username bluestudy password password
no ip domain-lookup!
!
interface Ethernet0/0
ip address 202.108.66.98 255.255.255.248
no shut
!
interface Serial0/0
ip address 202.108.8.1 255.255.255.252
no shut
!
interface Serial0/1
no ip address
shutdown
!
ip route 0.0.0.0 0.0.0.0 202.108.8.2
!
snmp-server community public RO

snmp-server community private RW
!
line con 0
line aux 0
line vty 0 4
login local
!
no scheduler allocate
end

Cisco 2610c 的配置
version 11.2
service udp-small-servers
service tcp-small-servers
!
hostname 2610C
!
enable secret cisco
!
ip subnet-zero
no ip domain-lookup
!
ip address-pool local
isdn switch-type basic-net3
interface Ethernet0
ip address 10.2.0.11 255.255.0.0
!
interface Serial0
no ip address
encapsulation frame-relay
frame-relay lmi-type ansi
!
interface Serial0.1 point-to-point
description Frame Relay to bluestudy1
ip unnumbered Ethernet0
frame-relay interface-dlci 10
!
interface Serial0.2 point-to-point
description Frame Relay to bluestudy2
ip unnumbered Ethernet0
frame-relay interface-dlci 11
!
interface BRI1/0
no ip address
shutdown
isdn switch-type basic-net3
!
interface BRI1/1
ip address 192.168.3.1 255.255.255.240
encapsulation ppp
timeout absolute 60 0
dialer idle-timeout 3600
dialer-group 1
isdn switch-type basic-net3
peer default ip address pool default
ppp authentication chap pap callin
!
interface BRI1/2
no ip address
encapsulation ppp
shutdown
isdn switch-type basic-net3
!
interface BRI1/3
no ip address
encapsulation ppp
shutdown
isdn switch-type basic-net3
no peer default ip address
!
ip local pool default 192.168.3.3 192.168.3.14
ip http server
ip classless
ip route 192.168.5.0 255.255.255.0 serial0.1
ip route 192.168.4.0 255.255.255.0 serial0.2
ip route 0.0.0.0 0.0.0.0 10.2.0.1
!
access-list 1 permit any
dialer-list 1 protocol ip list 1
line con 0
password console
login
line aux 0
line vty 0 4
password telnet
login
!
end

Cisco 1720A 的配置
 
version 11.2
service udp-small-servers
service tcp-small-servers

hostname bluestudy1
!
enable secret cisco
!
ip subnet-zero
no ip domain-lookup
!
interface Fastethernet0
ip address 192.168.5.1 255.255.255.0
!
interface Serial0
no ip address
encapsulation frame-relay
!
interface Serial0.1 point-to-point
description Frame Relay to bluestudy
ip unnumbered Ethernet0
frame-relay interface-dlci 10
!
ip http server
ip classless
ip route 0.0.0.0 0.0.0.0 serial0.1
!
line con 0
password console
login
line aux 0
line vty 0 4
password bluestudy1
login
!
end
Cisco 1720B 的配置
version 11.2
service udp-small-servers
service tcp-small-servers

hostname bluestudy1
!
enable secret cisco
!
ip subnet-zero
no ip domain-lookup
!
interface Fastethernet0
ip address 192.168.4.1 255.255.255.0
!
interface Serial0
no ip address
encapsulation frame-relay
!
interface Serial0.1 point-to-point
description Frame Relay to bluestudy
ip unnumbered Ethernet0
frame-relay interface-dlci 11
!
ip http server
ip classless
ip route 0.0.0.0 0.0.0.0 serial0.1
!
line con 0
password console
login
line aux 0
line vty 0 4
password bluestudy2
login
!
end
Lucent MAX 6000

對于陣列式訪問服務器(朗訊的MAX 6000),可以起到小型ISP的作用,如果作了Callback的配置,那么員工就可以在家里也能夠登陸到公司的網絡。而且,因為E1線路通常是包月的,因此,可以省去員工的上網費用,當然也可以通過計費費軟件,適當收費,實現以網養網。
對于其配置只要將大于30個IP地址加入地址池中,然后將所有路由指向中心交換機即可。
對于MAX6000的配置,通常是菜單形式的,可以根據向導進行配置。
在此,省略其配置。
但是,以前遇到一個問題,MAX 6000接入中心交換機(3Com 3500)時,將其路由指向3500,而3500也將撥入用戶網絡指向MAX 6000,但是產生如下現象
現象如下:
1.由MAX6000撥入的192.168.6.0網絡與內部網絡10.0.0.0 通訊正常,但是卻不能與其他專線連接的網絡(如:192.168.2.0)通訊.而路由指向與上述相同.
2.中心交換機是6500的時候,這些問題就解決了,懷疑是3500的錯誤,但是,當將MAX 6000的網絡指向2610 A,同時,2610 A也將路由指向MAX 6000,在MAX 6000上Traceroute卻連192.168.0.6都到不了.最終的解決辦法就是,將192.168.6.0/24改成10.2.8.0/16,即給撥入用戶直接分配內部地址,這就不存在路由問題了,所以,都可以正常通訊,不知是何原因.
網絡管理
對于Cisco的網管軟件的使用上是比較簡單的。
在安裝CWSI時,只要給出一個種子點的IP地址(如:中心交換機的IP:10.1.0.2)就可以了,在安裝完軟件以后,利用自動搜尋功能就可以找到網絡中連接的Cisco設備了。同時,也要選擇相應的數據庫,對于PIX 520、Catalyst 6500、Catalyst 3500等要向代理要補丁包。因為沒有補丁包網管軟件連6500的模塊都不能識別。
至于一些應用功能,只要參照使用手冊看看就可以了。
但是,前提就是要安裝 HP OpenView 等操作平臺
對于CiscoView 的功能要簡單得多,前臺也可以安裝SNMPS
而Cwsi 包含Cisco View。

熱詞搜索:

上一篇:IP組播技術在視頻中的應用
下一篇:解決橋接中路由器配置IP參數問題

分享到: 收藏
国产一级一区二区_segui88久久综合9999_97久久夜色精品国产_欧美色网一区二区
韩国在线一区二区| 欧美色男人天堂| 日韩国产欧美三级| 成人综合婷婷国产精品久久| 欧美日韩日日摸| k8久久久一区二区三区| 69堂国产成人免费视频| 亚洲精品视频免费看| 粉嫩绯色av一区二区在线观看| 成人丝袜18视频在线观看| 在线播放91灌醉迷j高跟美女| 亚洲欧洲中文日韩久久av乱码| 国产1区2区3区精品美女| 日韩精品专区在线| 麻豆国产91在线播放| 日韩一级片在线观看| 美女爽到高潮91| 337p粉嫩大胆噜噜噜噜噜91av| 青娱乐精品在线视频| 日韩亚洲欧美中文三级| 久久99久久精品| 久久影视一区二区| 国产成人精品亚洲777人妖| 国产日产欧美一区| 91女人视频在线观看| 亚洲永久免费视频| 欧美精品vⅰdeose4hd| 日本亚洲天堂网| 久久久不卡网国产精品二区| www.欧美色图| 视频一区欧美精品| 日韩免费高清av| 成人app在线| 亚洲电影一级黄| 久久中文娱乐网| 一本大道av一区二区在线播放| 亚洲成人免费观看| 精品国产乱码久久久久久牛牛| 国产高清精品网站| 一二三四区精品视频| 正在播放一区二区| 成人av在线影院| 日韩激情av在线| 中文字幕一区二区三区视频| 欧美午夜不卡视频| 国产精品88av| 五月天久久比比资源色| 国产日本一区二区| 91麻豆精品国产| 成人av在线一区二区三区| 午夜久久久久久电影| 国产亚洲欧洲997久久综合| 色999日韩国产欧美一区二区| 久久99热国产| 午夜天堂影视香蕉久久| 亚洲国产精品av| 欧美成人a在线| 欧美在线观看视频一区二区三区 | 天天综合天天综合色| 国产日韩欧美一区二区三区综合| 精品视频1区2区3区| 国产福利一区二区| 麻豆国产精品一区二区三区| 亚洲一卡二卡三卡四卡五卡| 久久这里只精品最新地址| 欧美日韩在线一区二区| av在线综合网| 不卡视频在线看| 国产一区二区在线观看视频| 免费人成精品欧美精品| 五月天精品一区二区三区| 亚洲色图清纯唯美| 国产精品麻豆一区二区| 精品国产伦一区二区三区免费 | 美洲天堂一区二卡三卡四卡视频| 亚洲欧美视频一区| 综合激情成人伊人| 日本一区二区综合亚洲| 久久久精品免费观看| 精品国产乱码久久久久久图片| 欧美精品xxxxbbbb| 欧美人妇做爰xxxⅹ性高电影 | 一二三区精品视频| 亚洲视频1区2区| 中文字幕一区不卡| 国产精品久99| 国产精品第四页| 国产精品三级av| 亚洲欧洲日韩一区二区三区| 国产精品美女久久久久av爽李琼 | 色综合天天视频在线观看 | 亚洲欧美在线aaa| 亚洲欧洲日韩av| 亚洲视频在线观看三级| 亚洲美女淫视频| 亚洲123区在线观看| 亚洲成人av一区二区| 丝袜a∨在线一区二区三区不卡| 午夜私人影院久久久久| 日韩avvvv在线播放| 精品亚洲成a人| 成人开心网精品视频| 丁香婷婷综合激情五月色| 99re亚洲国产精品| 欧美日韩视频在线第一区 | 激情深爱一区二区| 粉嫩蜜臀av国产精品网站| 99久久精品免费看国产| 欧美日本一区二区三区| 欧美成人女星排行榜| 久久精品亚洲麻豆av一区二区| 中文字幕五月欧美| 亚洲高清免费视频| 久久精品免费看| 99久久精品国产导航| 欧美日韩的一区二区| 久久网站热最新地址| 亚洲男人的天堂网| 另类小说色综合网站| 93久久精品日日躁夜夜躁欧美| 欧美日韩一级大片网址| 2021中文字幕一区亚洲| 一区二区三区中文字幕电影| 日本不卡一二三| 91蜜桃网址入口| 日韩一区二区三区四区 | 99久久精品情趣| 欧美一卡2卡三卡4卡5免费| 国产精品三级av| 免费看欧美美女黄的网站| a美女胸又www黄视频久久| 91精品国产综合久久久久久久 | 91欧美激情一区二区三区成人| 6080午夜不卡| 亚洲欧美经典视频| 国产一区久久久| 欧美日韩国产一二三| 中文字幕一区二区日韩精品绯色| 久久99精品久久久久久| 色婷婷国产精品| 国产精品少妇自拍| 国产专区综合网| 日韩欧美一区二区视频| 亚洲精品视频一区二区| 大美女一区二区三区| 精品卡一卡二卡三卡四在线| 亚洲国产sm捆绑调教视频| 99国产欧美另类久久久精品| 久久无码av三级| 精品在线观看免费| 日韩视频在线一区二区| 五月激情综合网| 欧美日韩aaaaaa| 亚洲一区二区三区爽爽爽爽爽| 97se狠狠狠综合亚洲狠狠| 久久久久久久久免费| 日本在线不卡一区| 欧美一区二区三区四区高清| 亚洲一区电影777| 欧美性大战久久| 一区二区欧美国产| 色一情一伦一子一伦一区| 中文字幕制服丝袜成人av| 国产激情一区二区三区| 国产亚洲精品aa午夜观看| 国产精品一级在线| 亚洲国产电影在线观看| av电影天堂一区二区在线观看| 中文字幕一区在线| 99久久精品免费观看| 综合久久久久综合| 在线观看视频一区二区| 亚洲一区二区三区视频在线| 欧美日本不卡视频| 久久精工是国产品牌吗| 欧美tk—视频vk| 成人综合在线观看| 日韩理论片一区二区| 色狠狠一区二区| 午夜精品福利一区二区三区蜜桃| 欧美高清激情brazzers| 免费看日韩a级影片| 欧美国产激情一区二区三区蜜月| 成人教育av在线| 一区2区3区在线看| 日韩午夜在线影院| 激情综合一区二区三区| 1024精品合集| 在线电影欧美成精品| 国产一区二区三区在线观看免费| 国产午夜精品福利| 欧美午夜精品久久久久久超碰| 热久久一区二区| 中文字幕一区二区在线观看| 欧美日韩成人激情| 岛国一区二区三区| 午夜不卡在线视频| 欧美国产禁国产网站cc| 欧美电影影音先锋| av影院午夜一区|