Debian的试用笔记
1 前言 为了一套监控系统,学习Debin系统,现分享笔记如下,给有需要的人。 2 实践部分 2.1 配置以太网 2.1.1 固定地址配置 vi /etc/network/interfaces 加入如下内容: auto eth0 iface eth0 inet static address 10.168.0.143 netmask 255.255.255.0 gateway 10.168.0.1 重启服务使配置生效 /etc/init.d/networking restart 2.1.2 桥接配置 1)安装桥套件 aptitude install bridge-utils 2)创建桥接口 brctl addbr br0 注,删除请使用 brctl delbr br0 3)配置桥 vim /etc/network/interfaces 输入如下配置: auto br0 iface br0 inet static address 10.168.0.15 netmask 255.255.255.0 gateway 10.168.0.1 bridge_ports eth0 eth1 up /usr/sbin/brctl stp br0 on 4)重启服务使配置生效 /etc/init.d/networking restart 或者 ifconfig br0 up 2.2 配置DNS vi