Skip to content

Instantly share code, notes, and snippets.

@corna
Last active April 21, 2020 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corna/5fa8d3295217d470406a52d33141751a to your computer and use it in GitHub Desktop.
Save corna/5fa8d3295217d470406a52d33141751a to your computer and use it in GitHub Desktop.
Vodafone (Italy) VoIP on BT HomeHub 2B with Openwrt
# Vodafone (Italy) VoIP on BT HomeHub 2B with Openwrt
* Install [danube-voip](https://github.com/olivluca/danube-voip/releases) (sofia-sip, svd and luci-app-svd).
* Retrieve your password and proxy from your Vodafone page, in the section "Credenziali modem alternativo".
* Copy this in `/etc/config/svd` (replacing ACCOUNTNAME, +39012345678, PASSWORD and PROXY with the proper values):
```
config main
option rtp_port_first '6000'
option rtp_port_last '6100'
option sip_tos '0x10'
option rtp_tos '0x10'
option log_level '0'
config account 'ACCOUNTNAME'
option disabled 'off'
option user '+39012345678'
option auth_name '+39012345678@ims.vodafone.it'
option password 'PASSWORD'
option domain 'ims.vodafone.it'
option registrar 'ims.vodafone.it'
option outbound_proxy 'PROXY'
config channel '2'
option led 'bthomehubv2b:orange:phone'
```
* Run `ping -c 1 PROXY` and take not of the IP.
* Open `/etc/hosts` and add a new line: `IP ims.vodafone.it`.
* Enjoy!
You may need a RJ11-BT adapter, like [this one](https://www.ebay.it/itm/RJ11-to-BT-Plug-Adaptor-Connect-ADSL-DSL-Cable-to-BT-Telephone-Phone-Socket/351044909620).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment