一、Linux系统环境
拓朴图:
系统
域名
服务器
客户端
CentOS 5.8_64bit
mail.zimbra.org
10.10.10.254
10.10.10.110
二、基本配置
1、配置IP
[root@localhost ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
IPADDR=10.10.10.254
NETMASK=255.255.255.0
:wq
[root@localhost ~]# service network restart
2、配置DNS文件
[root@localhost ~]# vim /etc/resolv.conf
nameserver 10.10.10.254
3、配置hosts文件
[root@localhost ~]# vim /etc/hosts
127.0.0.1 localhost.localdomain localhost
10.10.10.254 mail.zimbra.org
4、配置主机名:mail.zimbra.org
[root@localhost ~]# vim /etc/sysconfig/network
HOSTNAME=mail.zimbra.org
:wq 保存
[root@localhost ~]# hostname mail.zimbra.org
断开终端,再次连接,这样就需要重新启动系统:ctrl+d
[root@mail ~]# hostname
mail.zimbra.org
5、SELinux关闭、LINUX关闭防火墙
SELinux关闭
1.永久方法 – 需要重启服务器
修改/etc/selinux/config文件中设置SELINUX=disabled ,然后重启服务器。
2.临时方法 – 设置系统参数
使用命令setenforce 0
LINUX关闭防火墙
1.重启后永久性生效:
开启:chkconfig iptables on
关闭:chkconfig iptables off
2 .即时生效,重启后失效:
开启:service iptables start
关闭:service iptables stop