请稍侯

ufi-openwrt常用配置

前言 ufi第一次连接时,需要插入usb, 并用adb shell进入 网络配置目录 进入/etc/config修改 network和 wireless文件 network config interface 'loopback' option device 'lo' option proto 'static' option ipaddr '127.0.0.1' option netmask '255.0.0.0' config globals 'globals' option ula_prefix 'auto' config device option name 'b...

查看全文

ufi-openwrt开放端口

脚本如下 iptables -I INPUT 1 -p tcp --dport 80 -j ACCEPT iptables -I INPUT 1 -p tcp --dport 22 -j ACCEPT iptables -I INPUT 1 -p tcp --dport 554 -j ACCEPT iptables -I INPUT 1 -p tcp --dport 8080 -j ACCEPT /etc/init.d/firewall reload 启动时运行上面的脚本

查看全文

openvpn客户端指定网关

前言 MAC 添加路由的命令 Mac mac route命令同时访问内外网 sudo route -n add -net 192.168.0.0 -netmask 255.255.255.0 192.168.5.254 sudo route -n add -net 192.168.3.0 -netmask 255.255.255.0 192.168.5.254 sudo route -n add -net 192.168.2.0 -netmask 255.255.255.0 192.168.5.254 Windows route命令同时访问内外网 命令 route add -p...

查看全文

双网卡使用指定网卡上网

场景: 电脑有两块网卡,都可以上网: 一块有线网卡连接内网(网关:10.10.27.1) 一块无线网卡连接无线网(网关:10.12.0.1) 检验命令 tracert -d myjd.jd.com 参考资料https://blog.csdn.net/weixin_43543882/article/details/107302446

查看全文

BusyBox 命令和工具的软件

前言 BusyBox 是一个集成了三百多个最常用Linux命令和工具的软件。BusyBox 包含了一些简单的工具,例如ls、cat和echo等等,还包含了一些更大、更复杂的工具,例grep、find、mount以及telnet。有些人将 BusyBox 称为 Linux 工具里的瑞士军刀。 下载地址 https://busybox.net/downloads/binaries/1.31.0-defconfig-multiarch-musl/ BusyBox命令 替换 原始命令 查看连接的串口ls -al /dev/tty*或dmesg | grep ttyS* 新命令micro...

查看全文

golang操作串口

代码如下 package main import ( "github.com/xluohome/serial" "log" ) func main() { c := &serial.Config{Name: "/dev/tty.wchusbserial1420", Baud: 9600} s, err := serial.OpenPort(c) if err != nil { log.Fatal(err) } txbuf := []byte{0x01, 0x05, 0x00, 0x00, 0x5A, 0x00, 0xF7, 0x6A} n, err ...

查看全文

使用golang实现计算CRC-16(modbus)

前言 通信领域中计算CRC是一种常用模式,现在使用golang来计算一组数据的校验值首先给出计算参考 代码 第三方库 package main import ( "bytes" "encoding/binary" "fmt" "github.com/sigurn/crc16" ) func main() { num := []byte{0x01, 0x03, 0x00, 0x07, 0x00, 0x02, 0x75, 0xCA} fmt.Printf("num = %v \n", num[:len(num)-2]) modbus := crc16.CRC16_MODB...

查看全文