- 네트워크 설정 파일
- ethtool
- ifconfig
- netstat -nr
- /etc/resolv.conf 파일
1) /etc/hosts 파일
아이피와 호스트이름/ 도메인 이름을 맵핑하는 역할
# cat /etc/hosts
|
# Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1 linux.example.com linux localhost.localdomain localhost ::1 localhost6.localdomain6 localhost6 192.168.17.220 linux220.example.com linux220 |
|
IP 도메인 alias 순서대로 입력
alias는 없어도 되나 IP와 도메인은 없으면 안되고 사이는 공백으로 한다.
2) /etc/host.conf 파일
이름 요청시 도메인/ 이름 검색 순서를 나타낸다.
#cat /etc/host.conf
order hosts,bind /* 기본값이다. 아무것도 안써져 있어도 기본값을 따른다. */
-> 기본값
/etc/hosts 확인
DNS ( /etc/resolv.conf ) 확인
3) /etc/resolv.conf 파일
DNS 서버를 지정할 때 사용하는 파일
# cat /etc/resolv.conf
search example.com
nameserver 168.126.63.1 /* KT */
[암기] 대표적인 DNS 서버
|
# Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE] DEVICE=eth0 /* NIC Device Name */ BOOTPROTO=none /* 정적 IP 설정 */ BROADCAST=192.168.17.255 /* Broadcast Address */ HWADDR=00:0c:29:32:4a:62 /* MAC Address */ IPADDR=192.168.17.220 /* IP Address */ NETMASK=255.255.255.0 /* Netmask */ NETWORK=192.168.17.0 /* Netwrok Number */ ONBOOT=yes /* 부팅시에 NIC 활성화 여부 */ TYPE=Ethernet /* 이더넷 타입 */ GATEWAY=192.168.17.2 /* 게이트 웨이 */ |
|
- 네트워크 설정 툴
Edit Device : IP / Netmask / GW 설정
Edit DNS configuration : hostname / DNS 설정
IP 를 변경하기위해 Edit Device 선택후 <Enter>
지금 사용중인 eth0 <Enter>
IP 부분을 변경하고 save
Active 된 eth0 클릭
Address 부분의 IP 변경
확인) # cat /etc/sysconfig/network-scripts/ifcfg-eth0
# ifconfig
# service network restart
# ifconifg
'Linux > Linux Network' 카테고리의 다른 글
WEB Server ( Apache ) (0) | 2017.09.11 |
---|---|
DNS_2 ( Master DNS / Slave DNS ) (0) | 2017.09.11 |
DNS_1 ( 도메인 부하분산, 도메인 위임 ) (0) | 2017.09.08 |
이더채널 본딩 ( Ether Channel Bonding ) (0) | 2017.09.07 |
xinetd 방식과 standalone 방식 (0) | 2017.09.06 |