你的位置:国外/美国服务器租用 技术文档 LinuxVPS使用教程 正文
美国服务器出租
  1. 1美国独立服务器10G独享带宽不限流量,欧洲1G带宽独享,不限流量
  2. 2美国100M独享,洛杉矶 32GB内存 英特尔至强CPU,特价:1699元/月
  3. 3美国加州机房100M独享E3-1270,32G内存/96G内存,送KVM,1399元/月
  4. 4美国云服务器,8G内存,服务器CPU,4核心,特价699元/月,16G内存1299元
  5. 5美国G口抗攻击服务器,G口1000M独享带宽抗DDOS攻击服务器(至强Xeon E3 1230)
  6. 6国外G口带宽独享服务器,美国G口独享,欧洲G口独享服务器租用
  7. 7美国圣安娜KT服务器,加州KT服务器租用,KT独立服务器出租(特价799元/月)
  8. 8加州洛杉矶机房,中国访问速度最快的美国机房之一,999元/月,4G内存20M独享
  9. 9美国1G独享带宽,欧洲1G独享带宽租用(视频等大流量网站解决方案)
  10. 10凤凰城机房Phoenix服务器租用:7个机房4核I3,8G内存,30M独享带宽,首月999元
美国VPS主机
  1. 1美国SSD VPS租用,美国西海岸加州洛杉矶SSD VPS服务器,Linux/Windows
  2. 2内华达州VPS,拉斯维加斯VPS,拉斯维加斯服务器,内华达州服务器租用
  3. 3美国东海岸VPS,纽约服务器,曼哈顿云服务器,纽约VPS租用
  4. 4外贸VPS服务器,仿牌空间,仿牌主机,抗投诉VPS(外贸英文商城VPS)SSL证书安装服务
  5. 5美国Psychz电信直连VPS,中国访问速度最快的美国VPS,Psychz机房VPS
  6. 6Camforg专用VPS,美国Camforg多视频聊天软件VPS,Camforg服务器租用
  7. 7美国加州VPS,洛杉矶WebNX机房VPS,加州WN机房Windows VPS
  8. 8美国西雅图VPS,西雅图机房VPS,支持试用的VPS,VPS试用10元/天
  9. 9合租美国服务器,国外服务器合租,高端VPS服务器,完胜低配独立服务器的VPS
  10. 10抗攻击Windows VPS,不怕DDOS攻击的VPS,有攻击不关机,无攻击后2小时内恢复
如何给Ubuntu网站绑定多个IP,怎么给Ubuntu服务器设置多IP
  • 如何给Ubuntu网站绑定多个IP,怎么给Ubuntu服务器设置多IP? Ubuntu其实只需要设置一个文件 /etc/network/interfaces 即可。

    多个不同IP段的 /etc/network/interfaces 配置文件的范例如下:

    # The loopback network interface
    auto lo
    iface lo inet loopback

    # The primary network interface
    auto eth0
    iface eth0 inet static
    address 8.8.8.2
    netmask 255.255.255.248
    gateway 8.8.8.1  要注意这里,多个不同IP段,只要1个gateway配置即可,其他IP不需要配置gateway

    auto eth0:0
    iface eth0:0 inet static
    address 8.8.8.3
    netmask 255.255.255.248

    auto eth0:1
    iface eth0:1 inet static
    address 8.8.8.4
    netmask 255.255.255.248

    auto eth0:2
    iface eth0:2 inet static
    address 8.8.8.5
    netmask 255.255.255.248

    auto eth0:3
    iface eth0:3 inet static
    address 8.8.8.6
    netmask 255.255.255.248

     

    auto eth0:4
    iface eth0:4 inet static
    address 6.6.6.130   注意这里,虽然这是不同的IP段,但是不需要配置gateway,只需要配置netmask即可
    netmask 255.255.255.224

    auto eth0:5
    iface eth0:5 inet static
    address 6.6.6.131
    netmask 255.255.255.224

     

    更多ip也类似配置即可。

    配置文件完成后,用命令   /etc/init.d/networking restart 重启网络,不需要reboot重启服务器。 /etc/init.d/networking restart 重启网络的时候,如果你的配置文件有错误,那么他会提示你。比如IP重复了,书写错误了,等等。在执行此命令前,一定要小心检查interfaces配置文件,不然可能就把网络弄瘫痪,那时候就需要机房的工作人员去处理,十分麻烦。

     

    /etc/init.d/networking restart错误分析案例:
    [email protected]:/etc/network# /etc/init.d/networking restart
     * Reconfiguring network interfaces...
    /etc/network/interfaces:165: interface eth0:28 declared allow-auto twice
    ifdown: couldn't read interfaces file "/etc/network/interfaces"
    /etc/network/interfaces:165: interface eth0:28 declared allow-auto twice
    ifup: couldn't read interfaces file "/etc/network/interfaces"
       ...fail!

    说明eth0:28有重复,解决办法:vi interfaces找到eth0:28,删除掉重复的


    [email protected]:/etc/network# /etc/init.d/networking restart
     * Reconfiguring network interfaces...
    /etc/network/interfaces:166: duplicate interface
    ifdown: couldn't read interfaces file "/etc/network/interfaces"
    /etc/network/interfaces:166: duplicate interface
    ifup: couldn't read interfaces file "/etc/network/interfaces"
       ...fail!


    说明166行有重复,解决办法:vi interfaces找到166行(set number),删除掉重复的

    [email protected]:/etc/network# /etc/init.d/networking restart
     * Reconfiguring network interfaces...
    /etc/network/interfaces:162: duplicate interface
    ifdown: couldn't read interfaces file "/etc/network/interfaces"
    /etc/network/interfaces:162: duplicate interface
    ifup: couldn't read interfaces file "/etc/network/interfaces"

    说明162行有重复,解决办法:vi interfaces找到166行(set number),删除掉重复的

  • 点这里复制本页地址发送给您QQ/MSN上的好友