"CentOS 기본 게이트웨이 변경"의 두 판 사이의 차이

잔글 (로봇: 자동으로 텍스트 교체 (-<source lang='dos'> +<source lang='cli'>))
 
(사용자 2명의 중간 판 8개는 보이지 않습니다)
1번째 줄: 1번째 줄:
;리눅스 기본 게이트웨어 변경
;CentOS 기본 게이트웨어 변경
;/etc/sysconfig/network
;/etc/sysconfig/network
==임시 적용==
재부팅하면 사라짐.
;명령어
<source lang='bash'>
route add default gw 게이트웨이주소 장치명
</source>
;실행예시
<source lang='console'>
[root@zetawiki ~]# route
Kernel IP routing table
Destination    Gateway        Genmask        Flags Metric Ref    Use Iface
192.168.0.0    *              255.255.255.0  U    1      0        0 eth1
default        192.168.0.1    0.0.0.0        UG    0      0        0 eth1
[root@zetawiki ~]# route add default gw 192.168.0.2 eth1
[root@zetawiki ~]# route
Kernel IP routing table
Destination    Gateway        Genmask        Flags Metric Ref    Use Iface
192.168.0.0    *              255.255.255.0  U    1      0        0 eth1
default        192.168.0.2    0.0.0.0        UG    0      0        0 eth1
default        192.168.0.1    0.0.0.0        UG    0      0        0 eth1
</source>
:→ default 게이트웨이를 변경하면 네트워크가 안될 수도 있으니 주의!


==영구 적용==
==영구 적용==
12번째 줄: 36번째 줄:


;실행예시
;실행예시
<source lang='cli'>
<source lang='console'>
[root@jmnote ~]# cat /etc/sysconfig/network
[root@zetawiki ~]# cat /etc/sysconfig/network
NETWORKING=yes
NETWORKING=yes
HOSTNAME=jmnote
HOSTNAME=zetawiki
[root@jmnote ~]# cat /etc/sysconfig/network
[root@zetawiki ~]# cat /etc/sysconfig/network
[root@jmnote ~]# cat /etc/sysconfig/network
[root@zetawiki ~]# cat /etc/sysconfig/network
NETWORKING=yes
NETWORKING=yes
HOSTNAME=jmnote
HOSTNAME=zetawiki
GATEWAY=192.168.0.1
GATEWAY=192.168.0.1
[root@jmnote ~]# service network restart
[root@zetawiki ~]# service network restart
Shutting down interface eth0:                              [  OK  ]
Shutting down interface eth0:                              [  OK  ]
Shutting down interface eth1:                              [  OK  ]
Shutting down interface eth1:                              [  OK  ]
30번째 줄: 54번째 줄:
</source>
</source>
:→ 변경 전후 cat /etc/sysconfig/network와 route 로 상태 확인
:→ 변경 전후 cat /etc/sysconfig/network와 route 로 상태 확인
==임시 적용==
재부팅하면 사라짐.
;명령어
<source lang='bash'>
route add default gw 게이트웨이주소 장치명
</source>
;실행예시
<source lang='cli'>
[root@jmnote ~]# route
Kernel IP routing table
Destination    Gateway        Genmask        Flags Metric Ref    Use Iface
192.168.0.0    *              255.255.255.0  U    1      0        0 eth1
default        192.168.0.1    0.0.0.0        UG    0      0        0 eth1
[root@jmnote ~]# route add default gw 192.168.0.2 eth1
[root@jmnote ~]# route
Kernel IP routing table
Destination    Gateway        Genmask        Flags Metric Ref    Use Iface
192.168.0.0    *              255.255.255.0  U    1      0        0 eth1
default        192.168.0.2    0.0.0.0        UG    0      0        0 eth1
default        192.168.0.1    0.0.0.0        UG    0      0        0 eth1
</source>
:→ default 게이트웨이를 변경하면 네트워크가 안될 수도 있으니 주의!


==같이 보기==
==같이 보기==
*[[route add default gw]]
*[[우분투 기본 게이트웨이 변경]]
*[[리눅스 게이트웨이 확인]]
*[[리눅스 게이트웨이 확인]]
*[[route]]
*[[route]]
61번째 줄: 63번째 줄:
*[[기본 게이트웨이]]
*[[기본 게이트웨이]]


==참고 자료==
==참고==
*http://www.linuxquestions.org/questions/linux-networking-3/permanently-add-static-route-16769/
*http://www.linuxquestions.org/questions/linux-networking-3/permanently-add-static-route-16769/


[[분류: 리눅스 네트워크]]
[[분류: 리눅스 네트워크]]
[[분류:/etc/sysconfig]]
[[분류:/etc/sysconfig]]

2017년 12월 4일 (월) 11:31 기준 최신판

CentOS 기본 게이트웨어 변경
/etc/sysconfig/network

1 임시 적용[ | ]

재부팅하면 사라짐.

명령어
route add default gw 게이트웨이주소 장치명
실행예시
[root@zetawiki ~]# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.0.0     *               255.255.255.0   U     1      0        0 eth1
default         192.168.0.1     0.0.0.0         UG    0      0        0 eth1
[root@zetawiki ~]# route add default gw 192.168.0.2 eth1
[root@zetawiki ~]# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.0.0     *               255.255.255.0   U     1      0        0 eth1
default         192.168.0.2     0.0.0.0         UG    0      0        0 eth1
default         192.168.0.1     0.0.0.0         UG    0      0        0 eth1
→ default 게이트웨이를 변경하면 네트워크가 안될 수도 있으니 주의!

2 영구 적용[ | ]

재부팅 후에도 적용됨.

명령어
echo 'GATEWAY=게이트웨이주소' >> /etc/sysconfig/network
service network restart
실행예시
[root@zetawiki ~]# cat /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=zetawiki
[root@zetawiki ~]# cat /etc/sysconfig/network
[root@zetawiki ~]# cat /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=zetawiki
GATEWAY=192.168.0.1
[root@zetawiki ~]# service network restart
Shutting down interface eth0:                              [  OK  ]
Shutting down interface eth1:                              [  OK  ]
Shutting down loopback interface:                          [  OK  ]
Bringing up loopback interface:                            [  OK  ]
Bringing up interface eth0:                                [  OK  ]
Bringing up interface eth1:                                [  OK  ]
→ 변경 전후 cat /etc/sysconfig/network와 route 로 상태 확인

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}