mirror of
				https://github.com/flynx/proxmox-utils.git
				synced 2025-11-04 06:00:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			315 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			315 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
auto lo
 | 
						|
iface lo inet loopback
 | 
						|
iface lo inet6 loopback
 | 
						|
 | 
						|
# bootstrap...
 | 
						|
auto wan
 | 
						|
iface wan inet static
 | 
						|
	address ${WAN_IP}
 | 
						|
	gateway ${WAN_GATE}
 | 
						|
	hostname $(hostname)
 | 
						|
 | 
						|
auto lan
 | 
						|
iface lan inet static
 | 
						|
	address 10.0.0.1/24
 | 
						|
	gateway 10.0.0.2
 | 
						|
	hostname $(hostname)
 | 
						|
 | 
						|
auto admin
 | 
						|
iface admin inet dhcp
 | 
						|
	hostname $(hostname)
 | 
						|
 | 
						|
 |