ubuntu网络杂记

 一、安装iptables

iptables v1.6.2: can't initialize iptables table `nat': Table does not exist (do you need to insmod?) 要如何解决-高性能服务器开发这个错误提示说明nat表不存在或者没有加载相关的内核模块。可以通过以下步骤解决:检查是否已经安装iptables和相关的内核模块:# 安装iptablessudo apt-get install iptables# 查看当前内icon-default.png?t=N7T8https://linuxcpp.0voice.com/?id=16960

二、配置ubuntu的有线网络和wifi网络共存的时候,优先wifi上网的策略

1、配置Systemd-networkd

cd /etc/systemd/network/
touch 20-wifi.network
[Match]
Name=wlan0

[Network]
DHCP=ipv4
Gateway=192.168.1.1
DNS=8.8.8.8 8.8.4.4
sudo systemctl restart systemd-networkd

 二、配置netplan

sudo nano /etc/netplan/01-netcfg.yaml

network:
  version: 2
  renderer: networkd
  wifis:
    wlan0:
      dhcp4: no
      addresses: [192.168.1.10/24]
      gateway4: 192.168.1.1
      nameservers:
        addresses: [8.8.8.8, 8.8.4.4]
      access-points:
        "SSID名称":
          password: "密码"
sudo netplan apply

  • 8
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值