1. 在思科模擬器上如何進行交換機的基本配置
樓主,你好x0dx0ax0dx0a在模擬器上添加思科交換機x0dx0ax0dx0a進行CLI輸入x0dx0ax0dx0a用戶模式hostname# ;x0dx0a特權模式hostname(config)# ;x0dx0a全局配置模式hostname(config-if)# ;x0dx0ax0dx0a交換機口令設置:x0dx0aswitch>enable ;進入特權模式x0dx0aswitch#config terminal ;進入全局配置模式x0dx0aswitch(config)#hostname csico ;設置交換機的主機名x0dx0aswitch(config)#enable secret csico1 ;設置特權加密口令x0dx0aswitch(config)#enable password csico8 ;設置特權非密口令x0dx0aswitch(config)#line console 0 ;進入控制台口x0dx0aswitch(config-line)#line vty 0 4 ;進入虛擬終端x0dx0aswitch(config-line)#login ;虛擬終端允許登錄x0dx0aswitch(config-line)#password csico6 ;設置虛擬終端登錄口令csico6x0dx0aswitch#exit ;返回命令x0dx0a交換機VLAN創建,刪除,埠屬性的設置,配置trunk埠,將某埠加入vlan中,配置VTP:x0dx0aswitch#vlan database ;進入VLAN設置x0dx0aswitch(vlan)#vlan 2 ;建VLAN 2x0dx0aswitch(vlan)#vlan 3 name vlan3 ;建VLAN 3並命名為vlan3x0dx0aswitch(vlan)#no vlan 2 ;刪vlan 2x0dx0aswitch(config)#int f0/1 ;進入埠1x0dx0aswitch(config)#speed ? 查看speed命令的子命令x0dx0aswitch(config)#speed 100 設置該埠速率為100mb/s (10/auto)x0dx0aswitch(config)#plex ? 查看plex的子命令x0dx0aswitch(config)#plex full 設置該埠為全雙工(auto/half)x0dx0aswitch(config)#description TO_PC1 這是該埠描述為TO_PC1x0dx0aswitch(config-if)#switchport access vlan 2 ;當前端口加入vlan 2x0dx0aswitch(config-if)#switchport mode trunk ;設置為trunk模式(access模式)x0dx0aswitch(config-if)#switchport trunk allowed vlan 1,2 ;設置允許的vlanx0dx0aswitch(config-if)#switchport trunk encap dot1q ;設置vlan 中繼x0dx0aswitch(config)#vtp domain vtpserver ;設置vtp域名相同x0dx0aswitch(config)#vtp password ;設置發vtp密碼x0dx0aswitch(config)#vtp server ;設置vtp伺服器模式x0dx0aswitch(config)#vtp client ;設置vtp客戶機模式x0dx0ax0dx0a交換機設置IP地址,默認網關,域名,域名伺服器,配置和查看MAC地址表:x0dx0aswitch(config)#interface vlan 1 ;進入vlan 1x0dx0aswitch(config-if)#ip address 192.168.1.1 255.255.255.0 ;設置IP地址x0dx0aswitch(config)#ip default-gateway 192.168.1.6 ;設置默認網關x0dx0aswitch(config)#ip domain-name cisco.com 設置域名x0dx0aswitch(config)#ip name-server 192.168.1.18 設置域名伺服器x0dx0aswitch(config)#mac-address-table? 查看mac-address-table的子命令x0dx0aswitch(config)#mac-address-table aging-time 100 設置超時時間為100msx0dx0aswitch(config)#mac-address-table permanent 0000.0c01.bbcc f0/3 加入永久地址在f0/3埠x0dx0aswitch(config)#mac-address-table restricted static 0000.0c02.bbcc f0/6 f0/7 加入靜態地址目標埠f0/6源埠f0/7x0dx0aswitch(config)#endx0dx0aswitch#show mac-address-table 查看整個MAC地址表x0dx0aswitch#clear mac-address-table restricted static 清除限制性靜態地址x0dx0a交換機顯示命令:x0dx0aswitch#write ;保存配置信息x0dx0aswitch#show vtp ;查看vtp配置信息x0dx0aswitch#show run ;查看當前配置信息x0dx0ax0dx0aswitch#show vlan ;查看vlan配置信息x0dx0aswitch#show interface ;查看埠信息x0dx0aswitch#show int f0/0 ;查看指定埠信息x0dx0aswitch#show int f0/0 status;查看指定埠狀態x0dx0aswitch#dir flash: ;查看快閃記憶體
2. 在思科模擬器上如何進行交換機的基本配置
樓主,你好
在模擬器上添加思科交換機
進行CLI輸入
用戶模式hostname# ;
特權模式hostname(config)# ;
全局配置模式hostname(config-if)# ;
交換機口令設置:
switch>enable ;進入特權模式
switch#config terminal ;進入全局配置模式
switch(config)#hostname csico ;設置交換機的主機名
switch(config)#enable secret csico1 ;設置特權加密口令
switch(config)#enable password csico8 ;設置特權非密口令
switch(config)#line console 0 ;進入控制台口
switch(config-line)#line vty 0 4 ;進入虛擬終端
switch(config-line)#login ;虛擬終端允許登錄
switch(config-line)#password csico6 ;設置虛擬終端登錄口令csico6
switch#exit ;返回命令
交換機VLAN創建,刪除,埠屬性的設置,配置trunk埠,將某埠加入vlan中,配置VTP:
switch#vlan database ;進入VLAN設置
switch(vlan)#vlan 2 ;建VLAN 2
switch(vlan)#vlan 3 name vlan3 ;建VLAN 3並命名為vlan3
switch(vlan)#no vlan 2 ;刪vlan 2
switch(config)#int f0/1 ;進入埠1
switch(config)#speed ? 查看speed命令的子命令
switch(config)#speed 100 設置該埠速率為100mb/s (10/auto)
switch(config)#plex ? 查看plex的子命令
switch(config)#plex full 設置該埠為全雙工(auto/half)
switch(config)#description TO_PC1 這是該埠描述為TO_PC1
switch(config-if)#switchport access vlan 2 ;當前埠加入vlan 2
switch(config-if)#switchport mode trunk ;設置為trunk模式(access模式)
switch(config-if)#switchport trunk allowed vlan 1,2 ;設置允許的vlan
switch(config-if)#switchport trunk encap dot1q ;設置vlan 中繼
switch(config)#vtp domain vtpserver ;設置vtp域名相同
switch(config)#vtp password ;設置發vtp密碼
switch(config)#vtp server ;設置vtp伺服器模式
switch(config)#vtp client ;設置vtp客戶機模式
交換機設置IP地址,默認網關,域名,域名伺服器,配置和查看MAC地址表:
switch(config)#interface vlan 1 ;進入vlan 1
switch(config-if)#ip address 192.168.1.1 255.255.255.0 ;設置IP地址
switch(config)#ip default-gateway 192.168.1.6 ;設置默認網關
switch(config)#ip domain-name cisco.com 設置域名
switch(config)#ip name-server 192.168.1.18 設置域名伺服器
switch(config)#mac-address-table? 查看mac-address-table的子命令
switch(config)#mac-address-table aging-time 100 設置超時時間為100ms
switch(config)#mac-address-table permanent 0000.0c01.bbcc f0/3 加入永久地址在f0/3埠
switch(config)#mac-address-table restricted static 0000.0c02.bbcc f0/6 f0/7 加入靜態地址目標埠f0/6源埠f0/7
switch(config)#end
switch#show mac-address-table 查看整個MAC地址表
switch#clear mac-address-table restricted static 清除限制性靜態地址
交換機顯示命令:
switch#write ;保存配置信息
switch#show vtp ;查看vtp配置信息
switch#show run ;查看當前配置信息
switch#show vlan ;查看vlan配置信息
switch#show interface ;查看埠信息
switch#show int f0/0 ;查看指定埠信息
switch#show int f0/0 status;查看指定埠狀態
switch#dir flash: ;查看快閃記憶體
3. 思科模擬器怎麼還原埠配置
在思科模擬器的特權模式中;輸入Router#ersce startup-config 目的是刪除startup-config配置文件
然後輸入Router#reload 重新引導系統。
4. 思科模擬器怎麼將數據包從一台pc發送到多台pc
照以下步驟可以將數據包從一台pc發送到多台pc。
第一首先在Cisco准備三個路由器R1,R2和R3。還有兩個電腦PC1和PC2。
第二然後配置兩個PC電腦的IP地址。
第三然後再配置R1,R2和R3的IP地址。
注意:在配置IP地址的時候,要確定輸入的IP地址無誤。
第四然後再配置PC1去往PC2的單向路由。用命令ip route還有兩個路由器的IP地址。
第五然後再配置PC2到PC1的單向路由。要注意在配置單向路由的時候,IP地址不可以打錯。
第六然後點擊PC1的run窗口。用ipconfig和ping查詢PC1和PC2的連通性。
5. 思科模擬器中一台電腦怎麼通過交換機和路由器連接另一台電腦 配置很重要
思科模擬器,一台電腦想要通過交換機和路由器到另外一台電腦的話,首先要設計網段,其次電腦要配置好網路信息。交換機要劃分VLAN,給VLAN設置IP地址。路由器要把access口封裝成trunk口,還要配置路由。
6. 在思科模擬器上怎麼進行交換機的基本配置
交換機是區域網中最重要的設備,交換機是基於MAC 來進行工作的。和路由器類似,交換機也有IOS,IOS 的基本使用方法是一樣的,交換機是第二層的設備,可以隔離沖突域。交換機是基於收到的數據幀中的源MAC 地址和目的MAC 地址來進行工作。 軟體名稱:思科模擬器 Cisco Packet Tracer 6.0 正式版軟體大小:56MB更新時間:2013-05-22 1、首先找出一台2811類的路由器和一台2960類的交換機和3台pc,利用直通線使各個設備相互連接起來,如下圖所示: 2、為交換機配置主機名,命令為 復制內容到剪貼板 Switchenable Switch#confterminal Enterconfigurationcommands,oneperline.EndwithCNTL/Z. Switch(config)#hostnameS1 如下圖所示: 3、為交換機配置密碼,命令為: 復制內容到剪貼板 S1(config)#enablesecretcisco S1(config)#linevty015 S1(config-line)#passwordcisco S1(config-line)#login 如下圖所示 復制內容到剪貼板 S1(config)#intf0/1 S1(config-if)#shutdown S1(config-if)#switchmodeaccess S1(config-if)#switchport-securitiy 如下圖所示 5、檢查交換機的Mac地址表,命令是:S1#show mac-address-table,如下圖所示: 6、查看埠安全的設置情況,用命令為:show port-security,如下圖所示: 注意事項:連接各個設備一定要用准雙絞線,同種設備用交叉線,不同種設備用直通線。
7. 在思科模擬器上怎麼進行交換機的基本配置
當創建vlan時,必須要決定是否使用VTP,使用VTP,能使配置在一個或多個交換機上被改變時,那些改變會自動傳送給在同一個VTP域中的其他交換機。VTP 被組織成管理域(VTP Domain),相同域中的交換機能共享VLAN 信息。根據交換機在VTP 域中的作用不同,VTP 可以分為三種模式:伺服器模式(Server),客戶機模式(Client),透明模式。。。
1、首先,打開思科模擬器軟體,連接三台交換機的連接線,將所有交換機互相連接起來,一台當伺服器,一台當客戶機,另外一台當透明模式。
2、把三台交換機的配置清除干凈,重啟交換機,配置命令為:
復制內容到剪貼板 S1#flash:vlan.dat S1#erasestartup-config S1#reload
配置S1 為VTP server,配置命令為:
復制內容到剪貼板 S1(config)#vtpmodeserver
3、配置S3 為VTP transparent,配置命令是:
復制內容到剪貼板 S3#vlandatabase S3(vlan)#vtptransparent S3(vlan)#vtppasswordcisco(配置交換機的密碼)
4、配置S2 為VTP client,配置命令是:
復制內容到剪貼板 S2(config)#vtpmodeclient SettingdevicetoVTPCLIENTmode. S2(config)#vtpdomainVTP-TEST DomainnamealreadysettoVTP-TEST. S2(config)#vtppasswordcisco
5、在S1 上創建VLAN,檢查S2、S3 上的VLAN 信息,配置命令是:
復制內容到剪貼板 S1(config)#vlan2 S1(config)#vlan3
查看s1,s2,s3的`VLAN配置信息。命令是:
復制內容到剪貼板 S1#showvlan S2#showvlan S3#showvlan
6、查看VTP 信息,查看交換機的vtp詳細信息和版本等信息:
復制內容到剪貼板 S1#showvtpstatus
注意事項:
1、要成功配置vtp伺服器,應確認 配置的所有交換機都已設置為默認設置。
2、在網路中配置至少兩台vtp伺服器交換機。
3、確保所有的交換機都配置相同的vtp協議版本。
4、配置交換機的vtp模式一定要在交換機的特權配置模式下配置。
8. 思科模擬器怎麼實現地址轉換
1、NAT地址轉換。
2、兩個路由內網的ip是不能直接互通的,可以是DMZ或者虛擬埠來埠轉換。
3、互聯網上有兩個192.168.1.100的pc,能彼此通信。這里的有一個中間伺服器。
9. 在思科模擬器,把這個拓撲圖配置出來,把所有設備和PC及Server的配置內容及測試結果復制下來,存到WORD文
你好!
如果想讓全網互通,那麼只需要配置動態選擇協議了好了!(靜態路由相對麻煩點)
全路由器都配置如下命令:
enable
configure terminal
router rip
version 2
network 0.0.0.0
no auto-summary
exit
即可。
10. Cisco Packet Tracer如何將計算機名稱配置改寫
打開CiscoPacketTracer(思科模擬器),然後新建一個文件,在模擬器軟體上點下方的設備欄,我們選擇一個router,型號為2811的。
把其拖到工作區上。
然後選擇:CLI這個進行命令操作。
按回車,跳到:router>這個位置,我們輸入:en進入路由特權模式:router#。
進入全局配置模式,我們給路由器名字,輸入:hostnamechenpi,然後回車就可以給路由命名成:chenpi了。