• linxu 网路的一些命令


    # 开启ip转发
    echo 1 | sudo tee /proc/sys/net/ipv4/ip_forward

    # 用iptables 实现拦截 nat伪装
    sudo iptables -t nat -I POSTROUTING -j MASQUERADE


    sudo ifconfig eth0 down #关闭网卡
    sudo ifconfig eth0 hw ether 00:AA:BB:CC:DD:EE #然后改地址
    sudo ifconfig eth0 up #然后启动网卡

    查看当前系统所有的监听端口
    nc -zv localhost 1-65535

    如何查看HTTP头
    w3m -dump_head http://www.example.com
    或 curl --head http://www.example.com

    我的一个脚本: 笔记本作热点

    #!/bin/bash
    # Start
    # Configure IP address for WLAN
    sudo ifconfig wlan0 192.168.150.1
    # Start DHCP/DNS server
    sudo service dnsmasq restart
    # Enable routing
    sudo sysctl net.ipv4.ip_forward=1
    # Enable NAT
    sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
    # sudo iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
    # Run access point daemon
    sudo hostapd /etc/hostapd.conf
    # Stop
    # Disable NAT
    # sudo iptables -D POSTROUTING -t nat -o ppp0 -j MASQUERADE
    # Disable routing
    # sudo sysctl net.ipv4.ip_forward=0
    # Disable DHCP/DNS server
    # sudo service dnsmasq stop
    # sudo service hostapd stop

  • 相关阅读:
    vue中router与route的区别
    网络编程-20200427
    JSP-20200428
    Servelet-1
    多线程-20200422-高级应用
    20200415_多线程——重点是应用场景
    2020-04-13注解和反射
    HIVE
    流的关联关系
    排序算法整理——坑+后期的数据结构部分
  • 原文地址:https://www.cnblogs.com/kwingmei/p/3278581.html
Copyright © 2020-2023  润新知