Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision Next revisionBoth sides next revision | ||
| docs:guide-user:network:wan:isp-configurations [2024/04/30 20:38] – [KPN FTTH] pppoe-kpn is invalid, and reqaddress 'none' results in no IPv6 connection, which is undesirable in the 2020s where IPv6 should be the default. squeaktoy | docs:guide-user:network:wan:isp-configurations [2024/08/26 10:51] – [Aruba FTTH] Again option ipv6 '1' bit for OpenWrt 19.07 andreabravetti | ||
|---|---|---|---|
| Line 1001: | Line 1001: | ||
| list network ' | list network ' | ||
| </ | </ | ||
| + | |||
| + | ===== Greece ===== | ||
| + | ==== Nova ==== | ||
| + | This ISP is little more involved to set up. Users who wish to use their own CPEs need to get ahold of: | ||
| + | * The PPPoE credentials | ||
| + | * The telephony credentials | ||
| + | |||
| + | This can either be done by formally requesting the credentials from the ISP or by acquiring them from the router that the ISP provides. | ||
| + | |||
| + | The ISP provides internet connectivity on VLAN 835 (PPPoE) and voip telephony on VLAN 837 (DHCP). | ||
| + | |||
| + | For internet access, one must create a VLAN 835 and tag CPU and WAN. Then create a PPPoE interface, bind it on the 835 VLAN device, enter the credentials and enable "Use default gateway" | ||
| + | |||
| + | Example configuration for internet access: | ||
| + | < | ||
| + | config device | ||
| + | option name ' | ||
| + | option type ' | ||
| + | option ifname ' | ||
| + | option vid ' | ||
| + | |||
| + | config interface ' | ||
| + | option device ' | ||
| + | option proto ' | ||
| + | option username ' | ||
| + | option password ' | ||
| + | option ipv6 ' | ||
| + | </ | ||
| + | |||
| + | For telephony, one must create a VLAN 837 and tag CPU and WAN. Then create a DHCP interface, bind it on the 837 VLAN, disable "Use default gateway" | ||
| + | |||
| + | Example configuration for telephony: | ||
| + | < | ||
| + | config device | ||
| + | option name ' | ||
| + | option type ' | ||
| + | option ifname ' | ||
| + | option vid ' | ||
| + | option ipv6 ' | ||
| + | | ||
| + | config interface ' | ||
| + | option proto ' | ||
| + | option device ' | ||
| + | option clientid ' | ||
| + | option delegate ' | ||
| + | option defaultroute ' | ||
| + | </ | ||
| + | |||
| + | The DHCP client will fetch the ip and the proper classless routes. | ||
| + | |||
| + | **Make sure you disable Rebind protection. Whitelisting the sip service domain will not suffice.** | ||
| + | |||
| + | **Additionally for this method you have to clone the original routers MAC if using the original credentials** | ||
| + | |||
| + | SIP Configuration: | ||
| + | |||
| + | Depending on whether you have fetched the credentials from the ISP's original router or whether you have applied for a "bring your own device" | ||
| + | |||
| + | * Domain: `sip-voice.forthnet.gr` | ||
| + | * Username: Your phone number (`30xxxxxxxxxx`) | ||
| + | * Password: Your voip password (as fetched from the ISP's router) | ||
| + | * Server: `sip-voice.forthnet.gr` | ||
| + | * Port: `5060` | ||
| + | * SIP Transport: `UDP` | ||
| + | * SIP Address: `30xxxxxxxxxx@sip-voice.forthnet.gr` | ||
| + | * Registry Server: `sip-voice.forthnet.gr` | ||
| + | |||
| + | For the second case the following is what needs to be the client configuration | ||
| + | |||
| + | * Domain: `byod.nova.gr` | ||
| + | * Username: Your phone number (`30xxxxxxxxxx`) | ||
| + | * Password: Your voip password (from the email) | ||
| + | * Server: `byod.nova.gr` | ||
| + | * Port: `5060` | ||
| + | * SIP Transport: `UDP` | ||
| + | * SIP Address: `30xxxxxxxxxx@byod.nova.gr` | ||
| + | * Registry Server: `byod.nova.gr` | ||
| + | * Audio Codec: `PCMA` ONLY | ||
| + | |||
| + | **Caution, the byod.nova.gr domain is only configured on the DNS servers of the telephony VLAN, ** | ||
| + | |||
| + | Alternatively you can do a custom DNS record if you don't want to use the ISP DNS | ||
| + | the IPv4 for byod.nova.gr is 10.50.131.150 | ||
| ===== Ireland ===== | ===== Ireland ===== | ||
| Line 1104: | Line 1187: | ||
| option service ' | option service ' | ||
| </ | </ | ||
| + | |||
| ===== Italy ===== | ===== Italy ===== | ||
| ==== Aruba FTTH ==== | ==== Aruba FTTH ==== | ||
| Line 1116: | Line 1200: | ||
| option username ' | option username ' | ||
| option password ' | option password ' | ||
| - | option ipv6 'auto' | + | option ipv6 '1' |
| option device ' | option device ' | ||
| Line 1135: | Line 1219: | ||
| option username ' | option username ' | ||
| option password ' | option password ' | ||
| - | option ipv6 'auto' | + | option ipv6 '1' |
| config interface ' | config interface ' | ||
| Line 1812: | Line 1896: | ||
| **Note:** Turkcell Superonline does not share PPPoE credentials with you. So you have to capture them yourself from the stock router first. | **Note:** Turkcell Superonline does not share PPPoE credentials with you. So you have to capture them yourself from the stock router first. | ||
| + | |||
| + | ==== Turksat Kablonet ==== | ||
| + | |||
| + | Kablonet uses DHCP for Docsis and PPPoE for FTTH services. | ||
| + | |||
| + | Basic WAN configs should look like: | ||
| + | === DOCSIS === | ||
| + | < | ||
| + | config interface ' | ||
| + | option device ' | ||
| + | option proto ' | ||
| + | option ipv6 ' | ||
| + | option peerdns ' | ||
| + | option dns ' | ||
| + | option dns ' | ||
| + | </ | ||
| + | === FTTH === | ||
| + | < | ||
| + | config interface ' | ||
| + | option device ' | ||
| + | option proto ' | ||
| + | option username ' | ||
| + | option password ' | ||
| + | option ipv6 ' | ||
| + | option peerdns ' | ||
| + | option dns ' | ||
| + | option dns ' | ||
| + | </ | ||
| + | **Note(FTTH): | ||
| + | |||
| + | **Note2(FTTH): | ||
| ===== United Kingdom ===== | ===== United Kingdom ===== | ||
| Line 2106: | Line 2221: | ||
| DHCPv6 is used to IPv6 prefix delegation, but the IPv6 prefix must be released by the router before the prefix will be issued again to either the same router or to another router. If this doesn' | DHCPv6 is used to IPv6 prefix delegation, but the IPv6 prefix must be released by the router before the prefix will be issued again to either the same router or to another router. If this doesn' | ||
| + | |||
| + | == Gigabit Networks == | ||
| + | Gigabit networks provide residential broadband through Cityfibre. They operate CGNat and operate a DHCP based service. Their requirements web pag is here: [[https:// | ||
| + | |||
| + | These are a set of working steps with a Belkin RT3200. | ||
| + | * WAN VLAN tagging on the appropriate VLAN | ||
| + | * Disabled IPv6 | ||
| + | * No hostname required. | ||
| + | * Contact their support and ask for "Clear the DHCP Binding process for the ONT interface." | ||
| + | |||
| == Community Fibre == | == Community Fibre == | ||
| - | The Adtran ONT connects to any DHCP enabled router. | + | The Adtran ONT connects to any DHCP enabled router. Recommended to spoof the MAC of your router so it follows the provider one. |