
-------- Original Message --------
Most people probably have their internet connection provided through a single box. There are two separate functions going on:
* “Modem” (layer 2) -- handling the low-level signalling with whatever is at the other end of the wire (whether copper or glass); * “Router” (layer 3) -- routing TCP/IP packets between your house LAN and your ISP, which provides the connection between there and the rest of the Internet.
At one point I was running a cheap little Conexant AccessRunner USB box (bought from Dick Smith) on my ADSL connection; while this could also perform both functions in one, I found a version of the firmware that implemented only the modem function. Plugging this into a Linux box caused it to appear like an additional network interface (the drivers are already in the standard kernel). I could then control this via the “ppp” package <https://ppp.samba.org/>, using its PPP-over-ATM plugin to implement the correct low-level signalling (just VPI/VCI selection, really). I could then exploit the full power of the Linux network stack on that box to manage the connection to the rest of my house LAN.
Anyway, as my own house gets wired up for fibre (soon...), I was curious as to whether something equivalent could be done for a fibre connection. And the information I’ve found so far (e.g. <https://www.geekzone.co.nz/forums.asp?forumid=81&topicid=274586>) indicates it might actually be simpler than this. The “ONT” (“Optical Network Terminator”) box that gets installed in your house has phone ports and Ethernet ports on it, and it appears that (once you have your ISP connection up and running) the Ethernet connection behaves just like a regular LAN connection, with a DHCP server (and ISP’s router) listening on the other end. So instead of an Internet router at your end, you can plug a regular PC directly into that port, pick up an allocated address, and have it immediately connected to the Internet.
In short, there is nothing fibre-specific about the Internet router that the ISP provides to you at all. However, there might be issues with VLAN-tagging of the Ethernet frames, and this is not standardized between ISPs.
(By the way, I see several folks claiming there is no “modem” in a fibre connection. Of course there is.)
Not sure whether I’ll try this right away. Might be safest to do things the ISP-provided way, at least to begin with. _______________________________________________ wlug mailing list -- wlug(a)list.waikato.ac.nz | To unsubscribe send an email to wlug-leave(a)list.waikato.ac.nz Unsubscribe: https://list.waikato.ac.nz/postorius/lists/wlug.list.waikato.ac.nz Here's how it works at my home:
The ONT has one ethernet port activated, normally port 1. The connection to my ISP (and thus the rest of the internet) is made using PPPoE, which is a tunneling protocol. The ONT alone cannot cannot initiate this tunnel, I either have to plug in the router and configure a PPPoE connection on the WAN port so that the tunnel is created, or, plug a computer with a network cable and configure a PPPoE connection on that computer's network port so that the tunnel is created. Simply plugging a computer into the ONT with a cable doesn't work here. Your ISP may be different. Cheers, Wayne