Mudanças entre as edições de "Telecom20162 pji3 configuracoes"

De MediaWiki do Campus São José
Ir para navegação Ir para pesquisar
Linha 54: Linha 54:
 
address 192.168.40.10
 
address 192.168.40.10
 
netmask 255.255.255.0
 
netmask 255.255.255.0
</syntaxhighlight
+
</syntaxhighlight>
  
 
############ Arquivo script de inicialização
 
############ Arquivo script de inicialização
 
/etc/rc.local
 
/etc/rc.local
  
 +
<code>
 
#!/bin/sh -e
 
#!/bin/sh -e
 
#
 
#
Linha 78: Linha 79:
  
 
exit 0
 
exit 0
 +
</syntaxhighlight>
  
  
 
#############
 
#############

Edição das 19h27min de 15 de setembro de 2016

Link curto: http://bit.ly/2cMDeey


Operadora

                    1. Arquivo de configuração das interfaces de redes

/etc/network/interfaces

# interfaces(5) file used by ifup(8) and ifdown(8) auto lo iface lo inet loopback

  1. Onboard interface

auto eth0 iface eth0 inet manual

   bond-master bond0
   bond-use-carrier 1
  1. Offboard interface

auto eth1 iface eth1 inet manual

   bond-master bond0
   bond-use-carrier 1
  1. Bonding

auto bond0 iface bond0 inet manual

   bond-slaves none
   bond-lacp-rate fast
   bond-mode 802.3ad
   bond-xmit_hash_policy layer2+3
   bond-miimon 100

auto bond0.10 iface bond0.10 inet static address 192.168.10.10 netmask 255.255.255.0

auto bond0.20 iface bond0.20 inet static address 192.168.20.10 netmask 255.255.255.0

auto bond0.30 iface bond0.30 inet static address 200.135.37.125 netmask 255.255.255.192 gateway 200.135.37.126 dns-nameservers 8.8.8.8 8.8.4.4

auto bond0.40 iface bond0.40 inet static address 192.168.40.10 netmask 255.255.255.0 </syntaxhighlight>

                        1. Arquivo script de inicialização

/etc/rc.local

  1. !/bin/sh -e
  2. rc.local
  3. This script is executed at the end of each multiuser runlevel.
  4. Make sure that the script will "exit 0" on success or any other
  5. value on error.
  6. In order to enable or disable this script just change the execution
  7. bits.
  8. By default this script does nothing.

killall pppoe-server # Mata qualquer processo pppoe rodando pppoe-server -C pji -L 10.0.0.1 -p /etc/ppp/faixa-ip -I bond0.40 # Cria um novo processo pppoe sysctl -w net.ipv4.conf.all.forwarding=1 # Habilita o roteamento no servidor iptables -t nat -A POSTROUTING -o bond0.30 -j MASQUERADE # Configura o NAT

exit 0 </syntaxhighlight>