Linux server 中手動配網命令

2021-08-04 20:13:13 字數 590 閱讀 2605

linux 中常用的命令

sudo su   進入超級使用者

pwd    檢視所在目錄

ctrl+c   終止命令

ctrl+x   退出

poweroff  關機

reboot   重啟

exit   退出

配置網路

ifconfig   ifconfig命令用來檢視和配置網路裝置

ping g.cn   測試網路連通性

sudo nano /etc/network/inte***ces   進入配置網絡卡

auto ens33

iface ens33 inet static

address 10.0.7.123    (配置ip位址)

gateway 10.0.7.1     (配置閘道器)

netmask 255.255.255.0    (配置子網掩碼)

dns-nameservers 10.0.7.1    (配置dns)

sudo service networking restart   重啟網絡卡

Hyperledger Fabric手動配置日誌

ordererorg hostname domin的值構成完整網域名稱 peerorg enablenodeous是否在msp下生成config.yaml檔案 template.count當前組織peer節點成員數量 users.count當前組織中每個peer節點的使用者數量 crypogen工具...

Ubuntu 手動配置IP和dhcp自動配置IP

ubuntu網路配置如下 ubuntu上連了兩塊網絡卡,eth0為外網的eth1為內網的eth0上ip為自動獲取eth1上為手工設定 1 開啟ubuntu的 etc network inte ces檔案 預設內容如下 auto lo iface lo inet loopback 2 如果以dhcp方...

Linux(centos7 8)手動配IP位址

root localhost cd etc sysconfig network scripts root localhost network scripts vim ifcfg ens33 指定網絡卡是通過dhcp動態獲得ip還是靜態配置 dhcp 動態獲得 none 靜態配置 自己手工配置 boo...