Are VoIP Services or SIP Settings available in Airtel Xstream Fiber Broadband?

Messages
21
Location
NA
ISP
BSNL
Hello all wanted to know is there any VOIP settings for AIRTEL xtreme fiber users if so how to access same using SIP settings ..thx
 
Could someone please guide me through the changes on the router side, I have tired binding LAN 4 but it just doesn't work. My Microsip just keep saying "request timeout". I have added the screenshot of the microsip configuration below. Thank you for you're help.


Router Model: Nokia G-2425G-A
 

Attachments

  • airtel sip.webp
    airtel sip.webp
    27.5 KB · Views: 625
Upvote 0
If you save the router config and open the xml file you will get some thing like this:

Code:
<SIP AuthUserName="+91<phonenumber>@ims.airtel.in" AuthPassword="<password>" URI="" SIPEventSubscribeNumberOfElements="0">

<X_HW_Digitmap DMName="" DigitMap="" DigitMapStartTimer="20" DigitMapShortTimer="5" DigitMapLongTimer="10"/>

</SIP>

I believe you can use this password.
 
Upvote 0
@Dino Do not try to register more than 1 device on the server, it will block registration for 1 day before you can reuse your landline connection.
 
Upvote 1
Hi,

Has anybody got this working with the Airtel BDT-121 ONT? My setup is BDT-121 (bridge mode) -> Netgear R6220 -> Computer. I also have other computers behind an additonal router - so those would be BDT-121 (bridge mode) -> Netgear R6220 -> TP-Link Router (access gateway) -> Computer.

On the ONT side, i'm unsure as to how to do the VLAN binding similar to the post here - Is there VOIP service/SIP settings in AIRTEL xtreme fiber broadband | Airtel Xstream Broadband

This what I have on the ONT side so far,

Screen Shot 2020-11-25 at 7.16.31 PM.webp


I don't see any VLAN binding option in the Routing options of the router though

Screen Shot 2020-11-25 at 7.19.39 PM.webp


Any idea on how I should proceed from here?

On the Netgear router, when I try to enable VLAN mode, I lose internet connectivity.

Screenshot 2020-11-25 at 5.49.31 AM.webp


Ideally, I would like to be able to get Voice and Internet on all the ports, but, I guess I'll have to somehow do some binding on the ONT for this? Would appreciate some help :) Thanks
 
Upvote 0
I found this setting on my ONT which I believe does the binding like @ragil.s has.

Screen Shot 2020-11-27 at 12.35.35 PM.webp


However, I'm still not able to ping my voice gateway IP from openwrt. My current openwrt config has the following entries

Code:
config switch_vlan
        option device 'switch0'
        option vlan '3'
        option vid '660'
        option ports '4t 6t'

config interface 'Voice'
        option ifname 'eth0.660'
        option proto 'static'
        option netmask '255.255.240.0'
        option ipaddr '10.101.x.y'
        option gateway '10.101.a.b'
        option defaultroute '0'

config route
        option gateway '10.101.a.b'
        option netmask '255.255.240.0'
        option interface 'Voice'
        option target '10.232.139.0'

config route
        option gateway '10.101.a.b'
        option netmask '255.255.240.0'
        option interface 'Voice'
        option target '10.101.144.0'

any pointers on how to set this up in openwrt would be appreciated. Thanks
 
Upvote 0
@georgemp

My Configuration

Code:
config switch_vlan
    option device 'switch0'
    option vlan '660'
    option ports '8t 2t'

config interface 'voip'
    option ifname 'eth0.660'
    option proto 'static'
    option ipaddr '<Your IP Here>'
    option netmask '255.255.255.0'

config route
    option onlink '1'
    option netmask '255.255.0.0'
    option target '10.232.0.0'
    option gateway '<Gateway IP Here>'
    option interface 'voip'

What is the last route in your config for though?
And are you trying to ping from the openwrt box or from a pc on the network?
 
Upvote 0
Back