728x90
반응형

Network Interface에 대한 IP 설정

  • IP address → ipaddress <IP><SUBNET MASK>

R1(config)#interface fastethernet 0/0

R1(config-if)#ip address 10.10.10.254 255.255.255.0

R1(config-if)#no shutdown

 

 

Interface 상태 확인

  • 인터페이스 설정 후 활성화 및 오류 여부 확인

R1#show ip interface brief

 

 

실습 환경

 

목표

network interface 설정을 통해 네트워크 대역과 근접한 라우터가 통신 가능하도록 실습

 

 

R1 설정

f0/0 IP 설정

R1(config)#interface fastEthernet 0/0

R1(config-if)#ip address 1.0.0.1 255.255.255.252

R1(config-if)#no shutdown

 

 

f2/0 IP 설정

R1(config)#interface fastEthernet 2/0

R1(config-if)#ip address 192.168.0.1 255.255.255.0

R1(config-if)#no shutdown

 

설정 확인

R1# show ip interface brief

  • Interface : 인터페이스
  • IP-Address : 설정된 IP
  • OK? : 동작 상태
  • Method : IP 할당 방식
  • Status : up(정상)  administratively down(shutdown 상태)
  • Protocol : up(정상)  down(비활성/오류)

 

연결 확인

 

Kail 정보

1. Kali(192.168.0.44)에서 f2/0(192.168.0.1) ping 확인

 

2. Kali(192.168.0.44)에서 f0/0(1.0.0.1) ping 확인

 

 

R2 설정

f0/0 IP 설정

R2(config)#interface fastEthernet 0/0

R2(config-if)#ip address 1.0.0.2 255.255.255.252

R2(config-if)#no shutdown

 

f2/0 IP 설정

R2(config)#interface fastEthernet 2/0

R2(config-if)#ip address 192.168.1.1 255.255.255.0

R2(config-if)#no shutdown

 

설정 확인

R2# show ip interface brief

 

연결 확인

 

Cent 7 정보

 

1. Cent 7(192.168.1.100)에서 f2/0(192.168.1.1) ping 확인

 

2. Cent 7(192.168.1.100)에서 f0/0(1.0.0.2) ping 확인

 

3. Win 7(192.168.1.20)에서 f0/0(1.0.0.2) ping 확인

 

 

 

 

 

 

728x90

+ Recent posts