“模板:Ethernet”的版本间的差异
来自ARM Wiki
Tangdapeng(讨论 | 贡献) (创建页面,内容为“<div style="display:none;"> * '''硬件''' ::* 默认网卡硬件为<pre style="color: red">AR8033 PHY芯片</pre> ::* 若为双网卡板卡,则另一个芯片为R...”) |
Tangdapeng(讨论 | 贡献) |
||
(未显示同一用户的9个中间版本) | |||
第18行: | 第18行: | ||
allow-hotplug eth0 | allow-hotplug eth0 | ||
auto eth0 | auto eth0 | ||
− | iface eth0 inet dhcp | + | iface eth0 inet dhcp //动态IP模式 |
EOF | EOF | ||
第29行: | 第29行: | ||
allow-hotplug eth0 | allow-hotplug eth0 | ||
auto eth0 | auto eth0 | ||
− | iface eth0 inet static | + | iface eth0 inet static //静态IP模式 |
− | address 192.168.8.55 | + | address 192.168.8.55 //静态IP地址 |
− | netmask 255.255.255.0 | + | netmask 255.255.255.0 //子网掩码 |
− | gateway 192.168.8.1 | + | gateway 192.168.8.1 //网关 |
− | dns-nameservers 202.96.134.133 | + | dns-nameservers 202.96.134.133 //DNS域名服务器 |
EOF | EOF | ||
</syntaxhighlight> | </syntaxhighlight> | ||
:::[[File:静态IP.png|frameless|650px|静态IP]] | :::[[File:静态IP.png|frameless|650px|静态IP]] | ||
+ | |||
+ | ::* DNS设置 | ||
+ | :::<syntaxhighlight lang="bash" line> | ||
+ | cat <<EOF > /etc/resolv.conf //临时修改DNS,此文件内容可能被覆盖 | ||
+ | nameserver 8.8.8.8 //主DNS | ||
+ | nameserver 114.114.114.114 //副DNS | ||
+ | |||
+ | EOF | ||
+ | </syntaxhighlight> | ||
+ | ::*推荐方式,参考配置静态ip部分,将DNS写入到/etc/network/interfaces配置文档中 | ||
+ | |||
+ | <!-- | ||
+ | ::* 查看目前使用的DNS服务 | ||
+ | :::<syntaxhighlight lang="bash" line> | ||
+ | sudo apt install dnsutils | ||
+ | nslookup www.baidu.com //主机设置的DNS为8.8.8.8 | ||
+ | </syntaxhighlight> | ||
+ | :::[[File:DNS.png|frameless|650px|DNS]] | ||
+ | --> |
2020年6月5日 (五) 10:29的最新版本
- 查看设备
- 使用
- DNS设置
1 cat <<EOF > /etc/resolv.conf //临时修改DNS,此文件内容可能被覆盖 2 nameserver 8.8.8.8 //主DNS 3 nameserver 114.114.114.114 //副DNS 4 5 EOF
- 推荐方式,参考配置静态ip部分,将DNS写入到/etc/network/interfaces配置文档中