RHEL:接口配置文件的手册页

RHEL:接口配置文件的手册页

如何获取文件man的页面ifcfg-$Interface?类似man 5 $Keyword的东西/etc/sysconfig/network-scripts/ifcfg-enp0s3。没有man页面吗?是不是关键字错了?

RHEL:~# cat /etc/os-release | egrep "^NAME=|^VERSION="
NAME="Red Hat Enterprise Linux Server"
VERSION="7.0 (Maipo)"
RHEL:~# 
RHEL:~# 
RHEL:~# man --version
man 2.6.3
RHEL:~# 
RHEL:~# 
RHEL:~# man 5 ifcfg
No manual entry for ifcfg in section 5
RHEL:~# 
RHEL:~# 
RHEL:~# whatis ifcfg
ifcfg (8)            - simplistic script which replaces ifconfig IP managment
RHEL:~# 
RHEL:~# 
RHEL:~# man -k ifcfg
ifcfg (8)            - simplistic script which replaces ifconfig IP managment
RHEL:~# 
RHEL:~# 
RHEL:~# file /etc/sysconfig/network-scripts/ifcfg-enp0s3 
/etc/sysconfig/network-scripts/ifcfg-enp0s3: ASCII text
RHEL:~# 

在 SUSE 上运行良好:

SUSE:~# cat /etc/os-release | egrep "^NAME=|^VERSION="
NAME=openSUSE
VERSION="13.1 (Bottle)"
SUSE:~# 
SUSE:~# 
SUSE:~# man --version
man 2.6.3
SUSE:~# 
SUSE:~# 
SUSE:~# whatis ifcfg
ifcfg (5)            - common elements of network interface configuration
SUSE:~# SUSE:~# man 5 ifcfg
SUSE:~# 
SUSE:~# 
SUSE:~# man -k ifcfg
ifcfg (5)            - common elements of network interface configuration
ifcfg-bonding (5)    - interface bonding configuration
ifcfg-bridge (5)     - ethernet bridge interface configuration
ifcfg-tunnel (5)     - network tunnel interface configuration
ifcfg-vlan (5)       - virtual LAN interface configuration
ifcfg-wireless (5)   - wireless LAN network interface configuration
SUSE:~# 
SUSE:~# 
SUSE:~# file /etc/sysconfig/network/ifcfg-enp0s3 
/etc/sysconfig/network/ifcfg-enp0s3: ASCII text
SUSE:~# 

答案1

RHEL 中似乎没有接口配置文件的联机帮助页,但可以在以下位置找到文档:

/usr/share/doc/initscripts-*/sysconfig.txt

查找描述文件的部分/etc/sysconfig/network/etc/sysconfig/network-scripts/ifcfg-<interface-name>

同样在您的示例中,命令whatis ifcfg返回

ifcfg (8) - simplistic script which replaces ifconfig IP managment

正如你所看到的,它指的是“第 8 节”-管理工具和命令- 您可以使用以下命令打开联机帮助页:

man 8 ifcfg

但请注意,它不是描述 sysconfig 文件的联机帮助页ifcfg-<interface-name>。相反,它是一个命令的联机帮助页/sbin/ifcfg,这可能不是您想要的。

答案2

我在手册文档中找到了它,使用find / -name *ifcfg*

请用man 5 nm-settings-ifcfg-rh

它包括最全面的文档。我花了1个小时才找到它......哈哈

答案3

网络脚本的 RHEL 文档(严格来说不是您请求的手册页,但可能有帮助)

https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/s1-networkscripts-interfaces.html

答案4

如果该NetworkManager软件包安装在 CentOS/RHEL v7 上,则man -k ifcfg打印:

# man -k ifcfg
ifcfg (8)            - simplistic script which replaces ifconfig IP management
nm-settings-ifcfg-rh (5) - Description of ifcfg-rh settings plugin

然后,要查看ifcfg-*文档,您可以man nm-settings-ifcfg-rh直接键入。

相关内容