顯示網路配置

2021-05-22 01:48:14 字數 517 閱讀 6358

@echo off

call :select "ip address" "ip"

call :select "physical address" "mac"

call :select "default gateway" "gateway"

call :select "dns servers" "dns"

call :select "description" "netcard"

echo ip:%ip%

echo mac:%mac%

echo dns:%dns%

echo gateway:%gateway%

echo netcard:%netcard%

pause>nul

goto :eof

:select

for /f "tokens=2 delims=:" %%i in ('ipconfig /all ^| findstr /i /c:%1') do set "%~2=%%i"

goto :eof

vim配置高亮顯示

經常使用securecrt在linux下修改一些配置檔案,使用vi開啟總是乙個顏色,找起來比較頭大。因為vi不支援高亮,所以需要使用vim。安裝vim yum install y vim ubuntu使用apt get 全域性 所有使用者 vim配置檔案路徑 etc vimrc 當前使用者vim配置...

grep配置顏色顯示

查日誌時候必須要用的命令,為了在終端方便顯示檢視,可以加顏色和高亮等設定。自己習慣用的 grep color a b a 4表示下劃線,b 41表示紅色背景高亮 在 bashrc檔案中加兩行 export grep options color auto export grep color 4 41 ...

網路 linux網路配置

zlm ubuntu sudo ifconfig eth0 192.168.1.109 netmask 255.255.255.0 broadcast 192.168.1.255 zlm ubuntu sudo route add del default gw 192.168.1.1 新增刪除閘道器...