-
1. 기 능
네트워크 인터페이스를 설정한다.2. 문 법
3. 사용방법 및 정보
# ifconfig [ interface ]
[root@sense ~]# Ifconfig eth0
eth0으로 지정된 네트워크 장치의 IP Address, Netmask, Broadcast 등의 정보를 출력
[root@sense ~]# Ifconfig eth0 down
현재 작동중인 네트워크 장치 eth0의 작동을 중지
[root@sense ~]# Ifconfig eth0 210.94.172.60 netmask 255.255.255.0 up
IP Adress를 210.94.172.60로 부여하고, Netmask는 255.255.255.0을 사용하도록 eth0을 활성화
다음과 같은 네트워크 정보를 ifconfig로 할당할 경우.
IP Address : 210.94.172.60
Netmask : 255.255.255.0
Network Address : 210.94.172.0
Broadcast Address : 210.94.172.255
[root@sense ~]# ifconfig eth0 210.94.172.60 netmask 255.255.255.0 broadcast 210.94.172.255 up - interface <eth0> : 이더넷 카드를 나타내며, 이더넷 카드를 2개 이상 사용할 경우 eth0, eth1 순서로 할당한다.
IP Address : 사용할 IP Address를 할당한다.