il mio provaider mi rilascia 4 ip pubblici tramite dhcp. (stesso dhcp server, stessa subnet e stesso GW)
il modem fornito ha un sola presa eth. ed è completamento gestito dal provaider.
io vorrei poter gestire i 4 ip Pub. su una sola interfaccia eth per poi o nattarli con nat 1 a 1 su alcuni indirizzi privati.
il problema che non rieso a risolvere e prorio far funzionare i dhcp client sulla stessa int.
ho provato con delle sub-interface ma per poterle gestire ho dovuto associarle a VLAN diverse quindi non ottengo il risultato aspettato ossia il dhcp assegna solo all'interfaccia con vlan 1
Codice: Seleziona tutto
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 unassigned YES manual up up
FastEthernet0/0.1 XXX.XX.XX.251 YES DHCP up up
FastEthernet0/0.2 unassigned YES DHCP up up
FastEthernet0/0.3 unassigned YES DHCP up up
FastEthernet0/0.4 unassigned YES DHCP up up
FastEthernet0/1 unassigned YES NVRAM administratively down down
Dialer0 unassigned YES NVRAM up up
Codice: Seleziona tutto
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
!
interface FastEthernet0/0.1
description Virtual 1
encapsulation dot1Q 1 native
ip address dhcp
no snmp trap link-status
!
interface FastEthernet0/0.2
ip address dhcp
!
interface FastEthernet0/0.3
encapsulation dot1Q 3
ip address dhcp
no snmp trap link-status
!
interface FastEthernet0/0.4
encapsulation dot1Q 4
ip address dhcp
no snmp trap link-status
grazie per l'attenzione
Senzatempo