linux 網絡卡設定

2021-10-09 06:40:35 字數 1300 閱讀 6862

1、進入網絡卡目錄

cd /etc/sysconfig/network-scripts/
2、網絡卡配置檔案內容

type=

"ethernet"

proxy_method=

"none"

browser_only=

"no"

bootproto=

"none"

defroute=

"yes"

ipv4_failure_fatal=

"no"

ipv6init=

"yes"

ipv6_autoconf=

"yes"

ipv6_defroute=

"yes"

ipv6_failure_fatal=

"no"

ipv6_addr_gen_mode=

"stable-privacy"

name=

"ens192"

uuid=

"8564fca5-28d9-432b-80e1-ba40138945f1"

device=

"ens192"

onboot=

"yes"

ipaddr=

"10.3.101.21"

prefix=

"24"

gateway=

"10.3.101.2"

dns1=

"10.3.101.124"

nm_controlled=

"yes"

domain=

"sy.sypesco.com"

zone=

"public"

ipv6_privacy=

"no"

1、開啟防火牆

systemctl start firewalld

2、開放指定埠

firewall-cmd --zone=public --add-port=1935/tcp --permanent

命令含義:

–zone #作用域

–add-port=1935/tcp #新增埠,格式為:埠/通訊協議

–permanent #永久生效,沒有此引數重啟後失效

3、重啟防火牆

firewall-cmd --reload

4、檢視埠號

netstat -ntlp //檢視當前所有tcp埠·

netstat -ntulp |grep 1935 //檢視所有1935埠使用情況·

LINUX設定網絡卡

一 臨時啟用網絡卡並配置ip ifconfgi eth1 192.168.8.201 netmask 255.255.255.0 up 二 通過直接配置 etc sysconfig network scripts ifcfg eth1 一般為ifcfg eth0 vi etc sysconfig n...

linux 設定網絡卡

配置網絡卡 修改 etc sysconfig network scripts ifcfg eth0檔案,如果有多張網絡卡,則修改相應的網絡卡 vim etc sysconfig network scripts ifcfg eth0 device eth0 網絡卡對應的裝置別名 bootproto s...

linux設定網絡卡

前段時間太久沒有在本地使用虛擬機器,網絡卡連了很久,做個筆記吧 本機介面卡選項中設定dns位址 vmare 設定nat連線模式 把虛擬機器設定跟本機同一閘道器 即第三位 150 虛擬機器編輯網絡卡設定為固定ip vim etc sysconfig network scripts ifcfg ens3...