導航:首頁 > 程序命令 > 博達三層交換機配置命令

博達三層交換機配置命令

發布時間:2023-08-12 13:10:16

1. 三層交換機的網路拓撲圖和配置命令怎麼做啊

以思科三層交換機為例:
1、網路拓撲圖:

2、配置命令:

1)路由器的配置:
interface FastEthernet0/0
ip address 10.66.88.222 255.255.255.0
ip nat outside
plex auto
speed auto
interface FastEthernet0/1
ip address 192.168.1.1 255.255.255.0
ip nat inside
plex auto
speed auto
interface Vlan1
no ip address
shutdown
ip nat
inside source list 1 interface FastEthernet0/0 overload
ip classless
ip route 192.168.2.0 255.255.255.0 192.168.1.222
ip route 192.168.3.0
255.255.255.0 192.168.1.222
access-list 1 permit 192.168.0.0 0.0.255.255

2)三層交換機的配置:
hostname L3-SW
ip dhcp pool vlan2pool
network 192.168.3.0
255.255.255.0
default-router 192.168.3.1
dns-server 202.101.172.35
ip dhcp pool vlan1pool
network 192.168.2.0 255.255.255.0
default-router 192.168.2.1
dns-server 202.101.172.35
interface
FastEthernet0/1
no switchport
ip address 192.168.1.222 255.255.255.0
plex auto
speed auto
interface FastEthernet0/2
switchport mode
trunk
interface FastEthernet0/5
switchport mode trunk
interface
Vlan1
ip address 192.168.2.1 255.255.255.0
interface Vlan2
ip address 192.168.3.1 255.255.255.0
ip classless
ip route 0.0.0.0 0.0.0.0
192.168.1.1

2. 三層交換機如何配置DHCP服務

配置CISCO三層交換機DHCP服務的步驟:
1、首先將三層交換機開機,電腦telnet 遠程連接,並進入全局模式下,

2、在全局模式下開啟DHCP服務,輸入「service dhcp」,然後按回車,

3、指定不通過DHCP 地址池中分配的地址,也就是排除的地址。這里排除192.168.1.1到192.168.1.10的地址,輸入「ip dhcp excluded-address 192.168.1.1 192.168.1.10"

4、配置一個名為「cs」的地址池,輸入」ip dhcp pool cs",

5、指定要通過DHCP分配的網段和掩碼,輸入」network 192.168.1.0 255.255.255.0",

6、為客戶機配置DNS伺服器,輸入「dns-server 218.2.135.1",

7、設置地址租用期為」3「,輸入」lease 3",租期可以根據實際情況做調整,

8、為客戶機配置網關為「192.168.1.1」,輸入「default-router 192.168.1.1」,

9、這樣就設置完成了,只要是屬於192.168.1.0/24網段的客戶機就可以自動獲取IP地址了。這里注意了,如果存在多個VLAN,每個VLAN都需要設置DHCP服務。

3. 交換機與路由器的常用配置命令是什麼

1.交換機支持的命令:
交換機基本狀態:switch:;ROM狀態,
路由器是rommon>hostname>;用戶模式hostname#;特權模式hostname(config)#;全局配置模式hostname(config-if)#;介面狀態

交換機口令設置:switch>enable;進入特權模式
switch#configterminal;進入全局配置模式
switch(config)#hostname;設置交換機的主機名
switch(config)#enablesecretxxx;設置特權加密口令
switch(config)#enablepasswordxxa;設置特權非密口令
switch(config)#lineconsole0;進入控制台口
switch(config-line)#linevty04;進入虛擬終端
switch(config-line)#login;允許登錄
switch(config-line)#passwordxx;設置登錄口令
xxswitch#exit;返回命令

交換機VLAN設置:

switch#vlandatabase;進入VLAN設置
switch(vlan)#vlan2;建VLAN2
switch(vlan)#novlan2;刪vlan2
switch(config)#intf0/1;進入埠1
switch(config-if)#switchportaccessvlan2;當前埠加入
vlan2switch(config-if)#switchportmodetrunk;設置為干線
switch(config-if)#switchporttrunkallowedvlan1,2;設置允許的vlan
switch(config-if)#switchporttrunkencapdot1q;設置vlan中繼
switch(config)#vtpdomain;設置發vtp域名
switch(config)#vtppassword;設置發vtp密碼
switch(config)#vtpmodeserver;設置發vtp模式
switch(config)#vtpmodeclient;設置發vtp模式

交換機設置IP地址:

switch(config)#interfacevlan1;進入vlan1
switch(config-if)#ipaddress;設置IP地址
switch(config)#ipdefault-gateway;設置默認網關
switch#dirflash:;查看快閃記憶體

交換機顯示命令:

switch#write;保存配置信息
switch#showvtp;查看vtp配置信息
switch#showrun;查看當前配置信息
switch#showvlan;查看vlan配置信息
switch#showinterface;查看埠信息
switch#showintf0/0;查看指定埠信息

2.路由器支持的命令:
路由器顯示命令:

router#showrun;顯示配置信息
router#showinterface;顯示介面信息
router#showiproute;顯示路由信息
router#showcdpnei;顯示鄰居信息
router#reload;重新起動

路由器口令設置:

router>enable;進入特權模式
router#configterminal;進入全局配置模式
router(config)#hostname;設置交換機的主機名
router(config)#enablesecretxxx;設置特權加密口令
router(config)#enablepasswordxxb;設置特權非密口令
router(config)#lineconsole0;進入控制台口
router(config-line)#linevty04;進入虛擬終端
router(config-line)#login;要求口令驗證
router(config-line)#passwordxx;設置登錄口令xx
router(config)#(Ctrl+z);返回特權模式
router#exit;返回命令

路由器配置:

router(config)#ints0/0;進入Serail介面
router(config-if)#noshutdown;激活當前介面
router(config-if)#clockrate64000;設置同步時鍾
router(config-if)#ipaddress;設置IP地址
router(config-if)#ipaddresssecond;設置第二個IP
router(config-if)#intf0/0.1;進入子介面
router(config-subif.1)#ipaddress;設置子介面IP
router(config-subif.1)#encapsulationdot1q;綁定vlan中繼協議
router(config)#config-register0x2142;跳過配置文件
router(config)#config-register0x2102;正常使用配置文件
router#reload;重新引導

路由器文件操作:

router#running-configstartup-config;保存配置
router#running-configtftp;保存配置到tftp
router#startup-configtftp;開機配置存到tftp
router#tftpflash:;下傳文件到flash
router#tftpstartup-config;下載配置文件ROM狀態:
Ctrl+Break;進入ROM監控狀態
rommon>confreg0x2142;跳過配置文件
rommon>confreg0x2102;恢復配置文件
rommon>reset;重新引導
rommon>xmodem:flash:;從console傳輸文件

rommon>IP_ADDRESS=10.65.1.2;設置路由器IP
rommon>IP_SUBNET_MASK=255.255.0.0;設置路由器掩碼
rommon>TFTP_SERVER=10.65.1.1;指定TFTP伺服器IP
rommon>TFTP_FILE=c2600.bin;指定下載的文件
rommon>tftpdnld;從tftp下載
rommon>dirflash:;查看快閃記憶體內容
rommon>boot;引導IOS

靜態路由:

iproute;命令格式router(config)#iproute2.0.0.0255.0.0.01.1.1.2;
靜態路由舉例router(config)#iproute0.0.0.00.0.0.01.1.1.2;默認路由舉例

動態路由:

router(config)#iprouting;啟動路由轉發
router(config)#routerrip;啟動RIP路由協議。
router(config-router)#network;設置發布路由
router(config-router)#negihbor;點對點幀中繼用。

最好是去官方網站參考手冊。

閱讀全文

與博達三層交換機配置命令相關的資料

熱點內容
喪屍危機java 瀏覽:121
華為手機怎麼去除app標記未讀信息 瀏覽:852
java監控文件夾 瀏覽:803
群控伺服器主機怎麼轉變普通電腦 瀏覽:705
手機怎麼調整app大小 瀏覽:453
加密門禁卡揭秘 瀏覽:137
詞釋pdf 瀏覽:991
安卓手機上如何停止自動續費 瀏覽:880
加密編碼摘要 瀏覽:785
疫情命令黨 瀏覽:496
java轉sql 瀏覽:705
android獲取apn 瀏覽:74
phpfpm進程池 瀏覽:793
解壓掏耳朵音頻 瀏覽:676
爬香山解壓 瀏覽:952
演算法導論回溯 瀏覽:345
開盤指標源碼查詢 瀏覽:528
有道雲保存伺服器出錯 瀏覽:641
生成360文件夾 瀏覽:1006
圖庫的文件夾是哪個 瀏覽:507