1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| ### 進入router
Router> enable
Router#
### 進入privey config
Router# configure terminal
Router(config)#
### 設定 hostname (範例設定為"ISP_1")
Router(config)# hostname ISP_1
### 設定網卡介面 (範例設定為"fastEthernet 0/0")
ISP_1(config)# interface fastEthernet 0/0
ISP_1(config-if)#
### 設定IP
ISP_1(config-if)# ip address 192.168.0.5 255.255.255.0
ISP_1(config-if)#
### 離開並查看IP設定
ISP_1(config-if)# exit
ISP_1(config)# exit
ISP_1#
ISP_1# show running-config
Building configuration...
Current configuration : 575 bytes
!
version 12.4
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname ISP_1
!
!
!
!
!
!
!
!
ip cef
no ipv6 cef
!
!
--More--
|