[GNS] Router IP Address 지정.
IT taste/#2 network 2010. 5. 26. 12:24
Router>enable //enable 상태로 들어감.
Router#config // > 에서 # 심볼로 변환됨.
------------------------------------------------
Router(config)#interface fa0/0 //해당 인터페이스 지정. Router(config)#에서 Router(config-if)# 로 변경됨.
Router(config-if)#ip address 1.1.1.2 255.0.0.0
// ip adddress xxx.xxx.xxx.xxx yyy.yyy.yyy.yyy
(xxx.xxx.xxx.xxx는 해당 인터페이스의 ip주소 yyy.yyy.yyy.yyy는 서브넷마스크)
Router(config-if)#no shutdown
//디폴트로 shutdown되어있음. no shutdown - shut down 시키지 않음
Router(config-if)#exit
---------------------------------------------------
Router(config)#interface fa1/0
Router(config-if)#ip address 2.2.2.2 255.0.0.0
Router(config-if)#no shutdown
---------------------------------------------------
#show ip interface brief
//인터페이스에 구성된 내용을 보여줌.
'IT taste > #2 network' 카테고리의 다른 글
[Computer Networking] ARP : Adress Resoulution Protocol (0) | 2010.06.23 |
---|---|
[Network] Network Basic (1/3) (0) | 2010.01.13 |
[NT2003 / EFS / Certificate] EFS를 이용한 파일 암호화와 증명서 Export (0) | 2010.01.08 |
[NT / NTFS] NTFS (0) | 2010.01.07 |
[NT2003 / GP] Software Deploy : 그룹정책을 이용한 소프트웨어 배포 (0) | 2010.01.02 |