
网络
文章平均质量分 52
网络相关
横山郡守
查遗补缺,记之以观后效
展开
-
Ubuntu应用拓展(7)——RK3399 Ubuntu18.04设置wifi ap功能
平台:RK3399系统:Ubuntu18.04(Lubuntu)参考文档:ubuntu 18.04 设置wifi热点的手机端接收解决方案以及开机自启动命令https://blog.youkuaiyun.com/u012491646/article/details/80219973与参考文档不同的是,我们没有遇到需要输入用户名和密码的情况。操作步骤如下:点击右下角网络图标,选择“Edit Connections”。点击弹出窗口左下角的“加号”。在弹出窗口中选择下拉菜单,选择Wi-Fi。点击“原创 2021-10-12 16:25:41 · 1275 阅读 · 0 评论 -
以太网接口(1)——Android7.1配置默认静态IP
packages/apps/Settings/src/com/android/settings/ethernet/getStaticIpInfo.javapublic interface getStaticIpInfo { public boolean getStaticIp(String ipAddr); public boolean getStaticNetMask(String netMask); public boolean getStaticGa原创 2021-09-11 18:15:33 · 2523 阅读 · 1 评论 -
WiFi接口(1)——模块适配(AW-CM358)
RK3399适配海华的AW-CM358SM模块(2.4G/5G WiFi,蓝牙5.0)以替代AP6256。该模块的部分特性:WIFI:Backward compatibility with legacy 802.11 ac/ n/a/g/b technology.Bluetooth:Fully qualified Bluetooth BT4.2 and support Bluetooth 5.kernelkernel/arch/arm64/boot/dts/rockchip/OK3399-C原创 2021-07-30 17:05:52 · 6213 阅读 · 6 评论 -
网络服务(5)——usb网卡名称修改(RK3399 Ubuntu)
参考链接:https://www.go2aaron.com/blog/index.php/archives/28/https://superuser.com/questions/1000570/why-eth0-is-renamed-to-enx78e7d1ea46da-after-upgradehttps://tinkerboarding.co.uk/forum/thread-990.htmlusb网卡命名在RK3399 Ubuntu系统上使用usb转百兆网卡ASIX AX88772B,因为u原创 2021-06-15 16:54:59 · 5071 阅读 · 1 评论 -
网络服务(1)——uboot设置tftp
配置tftp server安装服务器、客户端和守护进程sudo apt-get install tftp-hpa tftpd-hpa xinetd服务器配置首先,在根目录下建一个tftpboot,并把属性改成任意用户可读写:# cd /# sudo mkdir tftpboot# sudo chmod 777 tftpboot然后,进入目录/etc/xinetd.d/,并在其中新建文件tftp,把指定的内容加入到tftp文件中:# cd /etc/xinetd.d/# sudo vim原创 2021-04-06 15:51:45 · 3006 阅读 · 1 评论 -
网络服务(2)——以太网配置IPV4和IPV6
相关内容参考链接:https://blog.youkuaiyun.com/chao199512/article/details/86139714IPV4长度为 32 位(4 个字节)IPv4 地址的总数为 4 294 967 296 (256 x 256 x 256 x 256)文本格式为 nnn.nnn.nnn.nnn, 每个 n 都是十进制数0<=nnn<=255IPV6长度为 128 位(16 个字节)地址的总数 ...文本格式为 xxxx:xxxx:xxxx:xxxx:xx原创 2021-05-24 16:37:01 · 3124 阅读 · 0 评论 -
网络服务(3)——以太网phy的识别加载(RK3399)
初始化信息phy正常连接log信息[ 1.279600] rk_gmac-dwmac fe300000.ethernet: clock input or output? (input).[ 1.280239] rk_gmac-dwmac fe300000.ethernet: TX delay(0x28).[ 1.280746] rk_gmac-dwmac fe300000.ethernet: RX delay(0x11).[ 1.281275] rk_gmac-dwmac原创 2021-05-26 15:11:24 · 4593 阅读 · 0 评论 -
网络服务(4)——以太网配置IP、网关
buildroot/etc/network/interfaces自动分配IPauto eth0iface eth0 inet dhcp(当前使用的系统在配置了dhcp之后,如果获取不到IP,会影响到桌面显示)静态IPauto eth0iface eth0 inet staticaddress 192.168.0.232gateway 192.168.0.1netmask 255.255.255.0patchdiff --git a/buildroot/package/ifup原创 2021-06-02 14:28:39 · 8632 阅读 · 0 评论