s1>en
s1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
# 使用 console 設備s1(config)#line console 0# 指定 console 密碼為 cicsos1(config-line)#password cicso# 輸入 login 要求要輸入密碼才能登入s1(config-line)#login
telnet 登入比使用 console 特地拉一條線來的方便,不過 telnet 使用 IP 來連接 Switch 機換器 ,但是 Switch 本身是沒有 IP 的,所以我們透過 VLAN 創建一個 IP 給交換器使用 ( 必須是與連線的 PC 同一網段才行 )。
4.1.1 VLAN 賦予 IP
1
2
3
4
5
6
7
8
9
s1>en
s1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
# 使用 vlan 設備s1(config)#int vlan 1# 賦予 IP 及子網路遮罩s1(config-if)#ip addr 192.168.50.100 255.255.255.0# 使設定生效s1(config-if)#no shutdown
telnet 登入有個缺點就是透過明碼傳輸,如果在 LAN 中有惡意人事使用擷取封包就能知曉密碼等設定,風險很高,另外一個比較安全機制就是透過 SSH 來登入。
4.1.1 VLAN 賦予 IP
1
2
3
4
5
6
7
8
9
s1>en
s1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
# 使用 vlan 設備s1(config)#int vlan 1# 賦予 IP 及子網路遮罩s1(config-if)#ip addr 192.168.50.100 255.255.255.0# 使設定生效s1(config-if)#no shutdown