查看: 817|回复: 0

[经验] 嵌入式学习-ElfBoard ELF 1-设置静态和动态IP的方法

[复制链接]

该用户从未签到

发表于 2023-10-31 09:45:37 | 显示全部楼层 |阅读模式
分享到:
本帖最后由 eefocus_3944881 于 2023-10-31 09:47 编辑

一、设置静态IP
1.配置文件路径/etc/network/interfaces
root@ELF1:~# vi /etc/network/interfaces

2.根据实际情况进行配置修改
例如修改eth0的IP为192.168.1.232:
# Wired or wireless interfaces
auto eth0
#iface eth0 inet dhcp
#iface eth1 inet dhcp
iface eth0 inet static
address 192.168.1.232
netmask 255.255.255.0
#       gateway 192.168.0.1
hwaddress ether aa:cc:dd:ee:ff:dd
效果如下:
图片1.png


3.设置DNS
root@ELF1:~# vi /etc/autorun.sh
添加如下内容:
echo "nameserver 8.8.8.8" >/etc/resolv.conf
效果如下:
图片2.png


4.重启服务
root@ELF1:~# /etc/init.d/networking restart


5.查看eth0的IP
root@ELF1:~# ifconfig eth0
图片3.png
IP设置成功。

二、设置动态IP
设置动态获取IP时,只需将/etc/network/interfaces文件改为如下形式,其它步骤与设置静态IP相同。
例如设置eth0为动态获取IP:
# Wired or wireless interfaces
auto eth0
iface eth0 inet dhcp
#iface eth1 inet dhcp
#iface eth0 inet static
#       address 192.168.1.232
#       netmask 255.255.255.0
#       gateway 192.168.0.1
#       hwaddress ether aa:cc:dd:ee:ff:dd
效果如下:
图片4.png


回复

使用道具 举报

您需要登录后才可以回帖 注册/登录

本版积分规则

关闭

站长推荐上一条 /4 下一条



手机版|小黑屋|与非网

GMT+8, 2024-11-18 01:36 , Processed in 0.114289 second(s), 16 queries , MemCache On.

ICP经营许可证 苏B2-20140176  苏ICP备14012660号-2   苏州灵动帧格网络科技有限公司 版权所有.

苏公网安备 32059002001037号

Powered by Discuz! X3.4

Copyright © 2001-2024, Tencent Cloud.