I read http://www.ehow.com/about_6648327_difference-between-gateway-router.html
Since I don’t a spare computer to run as a default router behind my ISP router I'll do it with a jail and build a network of jails behind it. If this makes any since I see two options.
If I was to use VNET jails, could the first jail run as the defaultrouter, and the next jail runs as the Gateway for other jails? Maybe it`s like PF cleaning things up and routing to the router. Is that one way it can work? What role would the host play?
Or if I just use regular jails without VNET, would I make the host the defaultrouter and the first jail the gateway? I guest this would be a bad idea based on Chris Loza article, but if this is the way it’s done what additional programs would be needed to help protect the host if running as defaultrouter? Would packet filtering be enough?
I don’t want to throw things off by my intent of use, because there will be other things I will want to try, but for now, I want to use my FreeBSD desktop and laptop as the user to connect to a VPN provider, with as much added security on the host as possible, while at the same time learning as much as I can with my own networking model through the use of jails on a single machine. I just want to catch up.
if one router is congested or compromised, you can simply take out that router and the other routers will determine other possible paths to get data across the network. If you take a gateway out, you bring a whole network down.
Since I don’t a spare computer to run as a default router behind my ISP router I'll do it with a jail and build a network of jails behind it. If this makes any since I see two options.
If I was to use VNET jails, could the first jail run as the defaultrouter, and the next jail runs as the Gateway for other jails? Maybe it`s like PF cleaning things up and routing to the router. Is that one way it can work? What role would the host play?
Code:
gateway_enable=”NO”
I don’t want to throw things off by my intent of use, because there will be other things I will want to try, but for now, I want to use my FreeBSD desktop and laptop as the user to connect to a VPN provider, with as much added security on the host as possible, while at the same time learning as much as I can with my own networking model through the use of jails on a single machine. I just want to catch up.