首页 > 系统相关 >ubuntu开启热点

ubuntu开启热点

时间:2022-10-06 13:45:57浏览次数:59  
标签:1.1 hostapd dhcp 开启 192.168 wlan1 ubuntu dnsmasq 热点

wlan1添加ip地址

ip addr add 192.168.1.1/24 dev  wlan1 broadcast 192.168.1.255

dnsmasq

配置文件

# wlan1
domain=mi6.dnsmasq.com
interface=wlan1
dhcp-host=192.168.1.1
dhcp-range=192.168.1.100,192.168.1.200,12h
dhcp-option=3,192.168.1.1
dhcp-option=option:dns-server,114.114.114.114,8.8.8.8

重启dnsmasq

$ service dnsmasq restart
 * Restarting DNS forwarder and DHCP server dnsmasq           [ OK ]

hostapd

配置

driver=nl80211
ssid=mi6-wifi
channel=10
interface=wlan1
wpa=2
wpa_passphrase=mi6-wifi-001
wpa_key_mgmt=WPA-PSK WPA-EAP
wpa_pairwise=TKIP CCMP
rsn_pairwise=CCMP

加载hostapd

hostapd /etc/hostapd/hostapd.conf -B

开启nat转发

sysctl -w net.ipv4.ip_forward=1
iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE
# iptables -t nat -A POSTROUTING -s 192.168.1.1/24 -o wlan0 -j MASQUERADE

标签:1.1,hostapd,dhcp,开启,192.168,wlan1,ubuntu,dnsmasq,热点
From: https://www.cnblogs.com/shiguoliang/p/16757333.html

相关文章

  • 10.6开启博客的第一天
    敲的第一个完整代码求两个数的最大值#include<stdio.h>intmain(){int num1=10;intnum2=20;if(num1>num2)printf("较大值是:%d\n",num1);elseprintf("较大值是:%d\n",num......
  • Ubuntu18.04系统下最新版GPU环境配置详细教程
    摘要:本文详细介绍了在Ubuntu18.04下如何配置深度学习GPU(显卡)环境,包括了显卡驱动下载安装,环境配置等。按照本教程的步骤在多台服务器上安装都取得了成功,是在多种方法的......
  • XShell 连接 VMware 虚拟机 Ubuntu
    如果你的Ubuntu使用ifconfig指令提示需要安装,大概率你也没有安装openssh-server:sudoaptinstallifconfigopenssh-server查看openssh-server是否运行:#查看ssh......
  • ubuntu 安装和网络等设置备忘
    1、ubuntu22.04.1镜像1.4G左右,现在有的华三实体机上安装。1.1华三实体机webconsole信息:adminPassword@_1.2离线安装ubuntu有好几个地方停卡的,需要细研究一下2、大于2......
  • 【linux基础】ubuntu系统NVIDIA驱动安装
    前言在安装GPU环境下的软件工具,特别是CUDA/CUDNN等,一定要先把GPU环境搭建好。NVIDIA驱动安装会遇到各种问题,真希望黄教主可以将各个工具如何安装使用讲解的更加细致、清楚一......
  • Ubuntu安装anaconda后终端前面不显示 base,导入原有环境后报错
    输入下面三条命令即可sourceactivatesourcedeactivatecondaactivateyour-virtual-name设置ssh开机自启(一般会新建文件)sudovimetc/rc.local如果保存报错......
  • Ubuntu入门
    安装jdksudomkdir/usr/lib/jvm#在Ubuntu中创建目录pscpD:\安装包\linux源码包\jdk-8u291-linux-x64.tar.gzchnq@192.168.0.102:/tmp#将jdk压缩包通......
  • ubuntu Linux 开启root ssh登陆
      ubuntu登录ssh的时候,默认情况下会出现如下问题:tangkai@tangkaideiMac-Pro~%sshroot@172.16.1.80-p21001root@172.16.1.80'spassword:Permissiondenied,......
  • 在Ubuntu20.04下基于ceph-deploy部署ceph 16.2.x
    一、环境准备1.1、机器环境条件172.16.88.100/192.168.122.100ceph-deploy.example.localceph-deploy2vcpu4G50G172.16.88.101/192.168.122.101ceph-mon1.exa......
  • 记一次在ubuntu安装filewall遇到的缺少包的错误解决方案,备用
    折腾了将近8个小时,网上找遍了,才找到这个方法,记录备用,方法纯于照搬提示:Youmightwanttorun'apt--fix-brokeninstall'tocorrectthese.Thefollowingpackage......