promxox gns3
proxmox gns3
http://jesin.tk/how-to-connect-gns3-to-the-internet/
http://rumyittips.com/how-to-connect-gns3-to-the-internet/
(cloud)Virtualbox Host only network ---- R1 ---- Switch1 ---- (cloud)msloopback[allow other network users, assign local ip from 192.168.1.0/24]
Set network adapter of proxmox virtualbox to use Virtualbox Host only network. Give proxmox a local ip from 192.168.1.0/24.
That connects to the "cloud" in gns3 which is also set to Virtualbox Host only network.
That cloud connects to router R1 which allows the proxmox vm to use that local ip.
R1 also connects to the msloopback adapter which connects to the outside default gateway.
This lets you take proxmox on a portable usb drive and move it around from home to work without having to configure the ip address everytime.
R1 configuration:
!
version 12.4
no service timestamps debug uptime
no service timestamps log uptime
no service password-encryption
!
hostname R1
!
boot-start-marker
boot-end-marker
!
no aaa new-model
memory-size iomem 5
ip cef
!
no ip dhcp use vrf connected
!
ip dhcp pool OURPOOL
network 192.168.0.0 255.255.255.0
default-router 192.168.0.1
dns-server 8.8.8.8
!
ip domain name example.com
ip name-server 8.8.8.8
ip name-server 8.8.4.4
!
multilink bundle-name authenticated
!
archive
log config
hidekeys
!
ip tcp synwait-time 5
!
interface FastEthernet0/0
ip address dhcp
ip nat outside
ip virtual-reassembly
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.0.1 255.255.255.0
ip nat inside
ip virtual-reassembly
duplex auto
speed auto
!
ip forward-protocol nd
ip route 0.0.0.0 0.0.0.0 192.168.0.1
!
no ip http server
no ip http secure-server
ip nat inside source list 10 interface FastEthernet0/0 overload
!
access-list 10 permit any
!
control-plane
!
!
alias exec c config t
!
line con 0
exec-timeout 0 0
privilege level 15
logging synchronous
line aux 0
line vty 0 4
privilege level 15
no login
!
end






