NETWORK ENGINEER BLOG

Tips and Reviews for Engineers

RHEL6 NetworkManager について

RHEL6 ではネットワーク設定に NetworkManager が採用されており、OS インストール時に自動で有効になります。
RHEL5 までと同じ設定ファイルの書式を使用する場合は、以下の手順で NetworkManager を無効にする必要があります。

NetworkManager を停止します。

[root@hostname ~]# service NetworkManager stop
Stopping NetworkManager daemon:                            [  OK  ]

[root@hostname ~]# service NetworkManager status
NetworkManager is stopped

NetworkManager の自動起動を無効化します。

[root@hostname ~]# chkconfig NetworkManager off

[root@hostname ~]# chkconfig NetworkManager --list
NetworkManager 	0:off	1:off	2:off	3:off	4:off	5:off	6:off

ネットワークを再起動します。

[root@hostname ~]# /etc/rc.d/init.d/network restart
Shutting down interface br0:                               [  OK  ]
Shutting down interface eth1:                              [  OK  ]
Shutting down interface eth2:                              [  OK  ]
Shutting down loopback interface:                          [  OK  ]
Bringing up loopback interface:                            [  OK  ]
Bringing up interface eth0:                                [  OK  ]
Bringing up interface eth2:                                [  OK  ]
Bringing up interface br0:                                 [  OK  ]

参考:
Red Hat Enterprise Linux 6 Hint & Tips
Red Hat Enterprise Linux 6 Deployment Guide -Chapter 7. NetworkManager

参考書籍

以上