----- Original: /etc/network/interfaces ----- Able to pin the router connect to the Internet (to install things); Other devices can access server by going to ServerIP:Port via web browser. ----- BEGINING OF FILE ----- # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto p1p1 iface p1p1 inet dhcp ----- END OF FILE ----- ----- Followed Instructions: /etc/network/interfaces ----- Unable to ping the router and/or Internet; Other devices cannot connect either. ----- BEGINING OF FILE ----- # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface # The next two lines are the original lines of the file, leave them in here. auto lo iface lo inet loopback #These next lines will create a the bridge for OpenVPN auto br0 iface br0 inet static address 192.168.88.90 #The IP Address above needs to be the IP address of your server. #Be sure that this IP address is the Internal IP Address of the #Server, not the public IP. It should look similair to the IP #Address above. netmask 255.255.255.0 #The netmask will probably not need to be changed. gateway 192.168.88.1 #The gateway column refers to the default gateaway of your router. #This address will probably be the same as the address used to #port forward. bridge_ports eth0 #This command bridges your ethernet connection for OpenVPN iface eth0 inet manual up ifconfig $IFACE 0.0.0.0 up up ip link set $IFACE promisc on down ip link set $IFACE promisc off down ifconfig $IFACE down #I really don't know what these last set of lines do, but they #still need to be here. ----- END OF FILE -----