網路主要涉及幾個重要概念:
1,埠
linux 檢視埠:
cat /etc/services
netstat
windows檢視埠:
netstat -ano
linux開啟/關閉埠:
linux系統下,81埠一般情況下是關閉的。
開啟81埠: iptables -i input -i eth0 -p tcp --dport 81 -j accept iptables -i output -o eth0 -p tcp --sport 81 -j accept
關閉81埠: iptables -i input -i eth0 -p tcp --dport 81 -j drop iptables -i output -o eth0 -p tcp --sport 81 -j drop
windows開啟/關閉埠:
關閉埠
netsh firewall set portopening tcp 埠號 disable
netsh firewall add portopening protocol = tcp port = 139 name = "關閉139" mode = disable
netsh firewall add portopening protocol = tcp port = 445 name = "關閉445" mode = disable
netsh firewall add portopening protocol = udp port = 137 name = "關閉137" mode = disable
netsh firewall add portopening protocol = udp port = 138 name = "關閉138" mode = disable
開啟埠
netsh firewall add portopening protocol = tcp port = 139 name = "關閉139" mode = enabled
netsh firewall add portopening protocol = tcp port = 445 name = "關閉445" mode = enabled
netsh firewall add portopening protocol = udp port = 137 name = "關閉137" mode = enabled
netsh firewall add portopening protocol = udp port = 138 name = "關閉138" mode = enabled
linux檢視程序:
ps -aux
windows檢視程序:
tasklist
wimc
linux服務操作:
service name status,start,stop,restart
windows下服務操作:
scnet
linux檢視當前系統登入的使用者
wwho
finger
last
剔除登入使用者:
pkill -t pts/n n(為上面查到的數字)
scp [email protected]:/root/a/* .
rzsz
linux下16進製制檢視:
1,od -t x1 file
2,xxd
3,vim :%!xxd
4,hexdump
ipcs -m -s -q
ipcrm
cat /proc/sys/kernel/shmmax shmmin shmall
nslookup檢視網域名稱
計算機網路概述 計算機網路基礎
邊緣部分 核心部分 報文交換 報文一般比分組長,報文交換的時延較長。對於廣域網區域網新的理解 不單單從網路覆蓋範圍區分區域網和廣域網,而是在應用技術方面進行區分,應用了區域網技術就是區域網,應用了廣域網技術就是廣域網。區域網一般是自己購買裝置,自己維護,寬頻固定。廣域網 花錢買服務,花錢買頻寬,效能...
計算機網路基礎
計算機網路的基本目的是實現資料通訊和資源共享,計算機網路的主要功能歸結為 1.資源共享2.資料通訊3.提高計算機的可靠性和可用性4.分布式處理 資料通訊 是計算機或其他數字終端裝置之間通過通訊通道進行的資料交換。影響資料通訊的質量的兩個最主要指標 1.資料傳輸速率 2.誤位元速率 表示一段之間內接收...
計算機網路基礎
網路通訊中的阻塞模式和非阻塞模式 主要是用在網路傳輸中 阻塞模式是 每乙個tcp套接字有乙個傳送緩衝區,當應用程式呼叫write操作的時候,核心從應用程序的緩衝區中複製資料到套接字的傳送緩衝區。如果傳送緩衝區無法容納應用程式的所有資料,應用程式將會被掛起,核心將不會從write系統呼叫返回,知道應用...