欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

马哥 今日小技巧 网络相关基础命令 有大用

网络相关基础命令

rz   # 通过ssh上传小文件

sz   # 通过ssh下载小文件

ifconfig eth0 down                  # 禁用网卡

ifconfig eth0 up                    # 启用网卡

ifup eth0:0                         # 启用网卡

mii-tool em1                        # 查看网线是否连接

traceroute www.baidu.com            # 测试跳数

vi /etc/resolv.conf                 # 设置DNS  nameserver IP 定义DNS服务器的IP地址

nslookup www.moon.com               # 解析域名IP

dig -x www.baidu.com                # 解析域名IP

python:

python内置httpserver,快速测试

# Python has a HTTP server built into the

# standard library. This is super handy for

# previewing websites.


# Python 3.x

$ python3 -m http.server


# Python 2.x

$ python -m SimpleHTTPServer 8000


# (This will serve the current directory at

http://localhost:8000)

更多历史小技巧,技术交流,岗位内推访问【马哥社区 club.magedu.com】


普通分类: