国产一级一区二区_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久久夜色精品国产_欧美色网一区二区
久久久久久999| 欧美精品福利视频| 亚洲高清资源| 亚洲一二三区在线| 欧美 日韩 国产一区二区在线视频 | 欧美呦呦网站| 久久久久久久综合| 国产精品久久久久高潮| 亚洲精品小视频在线观看| 久久男人av资源网站| 国产日韩欧美一区| 亚洲一区一卡| 国产精品福利网站| 一区二区三区欧美亚洲| 欧美另类久久久品| 最新中文字幕一区二区三区| 免费影视亚洲| 亚洲国产视频一区| 免费日韩一区二区| 亚洲第一视频网站| 女人天堂亚洲aⅴ在线观看| 一区二区视频免费在线观看| 久久精品国产久精国产思思| 国内精品嫩模av私拍在线观看 | 国产精品国产一区二区| 欧美大片网址| 欧美日一区二区三区在线观看国产免 | 国产日韩欧美一区二区三区在线观看| 一区二区三区免费观看| 欧美手机在线视频| 午夜亚洲福利| 美女精品国产| 亚洲精品一区二区三区婷婷月| 欧美日本簧片| 亚洲欧美国产制服动漫| 亚洲第一福利在线观看| 欧美精品一区在线观看| 亚洲一区二区三区777| 国外成人在线视频网站| 欧美日韩国产系列| 久久国产欧美精品| 日韩午夜激情av| 久久精品99国产精品酒店日本| 在线免费日韩片| 国产欧美精品xxxx另类| 欧美a级大片| 午夜国产不卡在线观看视频| 亚洲电影在线看| 欧美日韩一二区| 久久成人一区| 亚洲狼人综合| 国产精品视频专区| 美女视频黄 久久| 欧美亚洲网站| 亚洲欧美国产77777| 亚洲日本激情| 精品69视频一区二区三区| 国产精品久久久爽爽爽麻豆色哟哟| 久久久久久久久久看片| 在线综合视频| 亚洲黄色在线| 伊人色综合久久天天| 国产精品视频一区二区三区| 欧美黑人多人双交| 久久性天堂网| 亚洲国产精品悠悠久久琪琪| 欧美精品在线视频观看| 久久亚洲私人国产精品va| 久久se精品一区二区| 久久国产福利国产秒拍| 久久久999精品| 噜噜噜久久亚洲精品国产品小说| 久久久久高清| 美日韩丰满少妇在线观看| 噜噜噜躁狠狠躁狠狠精品视频| 国产精品99久久不卡二区| 中日韩在线视频| 欧美一区二区三区四区视频 | 激情综合久久| 一区二区三区在线视频播放| 伊人精品视频| 亚洲欧美日韩国产综合精品二区| 亚洲伦理在线免费看| 亚洲一区二区成人| 久久五月天婷婷| 欧美日韩高清一区| 国产精品高潮呻吟| 精品成人在线视频| 亚洲男女毛片无遮挡| 欧美高清在线| 狠狠综合久久av一区二区老牛| 免费国产自线拍一欧美视频| 女生裸体视频一区二区三区| 久久精品国产综合精品| 欧美国产免费| 国产日韩亚洲欧美综合| 亚洲第一综合天堂另类专| 99re66热这里只有精品4| 欧美一区二区三区在线| 欧美日韩一区高清| 伊人成人在线| 欧美在线视频免费播放| 欧美日韩在线三区| 亚洲激情黄色| 久久久久久色| 国产视频一区在线| 性色av一区二区怡红| 欧美视频久久| 99riav久久精品riav| 久久先锋影音| 国产亚洲欧美另类一区二区三区| 中文无字幕一区二区三区| 欧美老女人xx| 亚洲国产综合在线看不卡| 久久精品一区蜜桃臀影院| 国产精品视频成人| 亚洲欧美一区二区激情| 国产精品超碰97尤物18| 亚洲最新中文字幕| 国产精品夫妻自拍| 亚洲男人的天堂在线| 国产精品日韩二区| 一本久久综合亚洲鲁鲁| 国产精品v片在线观看不卡| 亚洲一区二区三区在线| 国产精品日韩在线一区| 久久久国产一区二区| 亚洲国产日韩在线| 欧美美女日韩| 欧美亚洲一区二区三区| 国产视频久久| 老司机精品视频一区二区三区| 亚洲国产另类久久精品| 欧美成人一区二区| 亚洲午夜精品福利| 国产一区二区观看| 欧美国产欧美亚洲国产日韩mv天天看完整 | 亚洲永久免费视频| 国产伊人精品| 欧美日韩久久| 久久成人综合网| 亚洲精品中文字| 国产午夜精品全部视频播放| 女同性一区二区三区人了人一 | 欧美在线视频一区| 亚洲欧洲视频在线| 国产偷国产偷精品高清尤物| 欧美激情精品| 久久久久久久久一区二区| 一区二区久久| 最新高清无码专区| 国内成+人亚洲| 国产农村妇女毛片精品久久麻豆 | 性色av一区二区三区在线观看| 尤物在线精品| 激情成人在线视频| 国产精品中文在线| 欧美日韩视频在线一区二区 | 欧美一区二区三区喷汁尤物| 亚洲国产精品成人va在线观看| 国产精品日本| 欧美精品免费视频| 女女同性女同一区二区三区91| 午夜视频在线观看一区二区三区 | 999亚洲国产精| 亚洲国产经典视频| 国产一区免费视频| 国产伦精品一区二区三区高清版 | 国产网站欧美日韩免费精品在线观看 | 亚洲欧洲日产国产网站| 精品成人国产| 激情久久久久久| 精品二区久久| 狠狠色噜噜狠狠色综合久| 国产日韩在线一区二区三区| 国产精品永久免费视频| 国产精品久久久久9999高清| 欧美午夜免费电影| 国产精品第13页| 国产精品久久久久久久久搜平片 | 欧美国产日韩一区二区| 欧美3dxxxxhd| 欧美日韩在线三区| 国产精品欧美一区二区三区奶水| 国产精品日日摸夜夜添夜夜av| 国产日产欧产精品推荐色| 激情亚洲成人| 一区二区三区毛片| 久久精品免费电影| 欧美黄色一级视频| 国产欧美一级| 亚洲精品视频中文字幕| 亚洲欧美偷拍卡通变态| 免费欧美视频| 国产私拍一区| 亚洲少妇最新在线视频| 久久久久国产精品一区三寸 | 国产免费亚洲高清| 亚洲黄色在线看| 欧美在线三区|