博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
计算机网络基础识别
阅读量:5233 次
发布时间:2019-06-14

本文共 1563 字,大约阅读时间需要 5 分钟。

网络主要涉及几个重要概念:

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下服务操作:

  sc

  net

 

 Linux查看当前系统登录的用户

  w

  who

  finger

  last

剔除登录用户:

  pkill -t pts/n n(为上面查到的数字)

 

 

 

 scp * .

 

rz

sz

 

 

 

Linux下16进制查看:

1,od -t x1 file

     2,xxd 

3,vim  :%!xxd

4,hexdump

 

ipcs -m -s -q

ipcrm <shmid>

cat /proc/sys/kernel/shmmax shmmin  shmall

 

 nslookup查看域名

 

 

转载于:https://www.cnblogs.com/lfsblack/p/3274652.html

你可能感兴趣的文章
[转]HTTPS简谈
查看>>
(图片)jsp上传图片,进行缩放处理
查看>>
集合类List,set,Map 的遍历方法,用法和区别
查看>>
HDU-2577-How to Type
查看>>
java日志框架之logback——布局详细说明书地址
查看>>
Java Selenium (十二) 操作弹出窗口 & 智能等待页面加载完成 & 处理 Iframe 中的元素...
查看>>
Scala入门系列(十):函数式编程之集合操作
查看>>
pulseaudio的交叉编译
查看>>
(Problem 7)10001st prime
查看>>
Cracking The Coding Interview 1.1
查看>>
mysql安装linux_二进制包安装
查看>>
POJ 3280 Cheapest Palindrome
查看>>
vb.net 浏览文件夹读取指定文件夹下的csv文件 并验证,显示错误信息
查看>>
thinkpad T420屏幕对比度设置
查看>>
20181212作业
查看>>
网络操作系统第一、二章习题
查看>>
如何做一名好的web安全工程师?
查看>>
shell 面试题
查看>>
企业选择 多云管理平台 六大注意事项
查看>>
命名规范
查看>>