SPA 901 Linksys phone

hi,
I would like to configure a Linksys SPA901 IP phone with asterisk. Do you know the parameters to set?
please help me!

:frowning:

thx

i think it will be similar to the SPA962 im using.

connect to the webinterface of the phone.
Login to the admin mode of it
enter credentials (if needed)
go to EXT1
set the following:
Line Enable: yes
SIP Port: 5060
Proxy: xxx.xxx.xxx.xxx (your asterisk server IP )
Display Name: User ID:
Password: Use Auth ID: yes
Auth ID:

do note that some things might be different since i use a later version. but they should look the same.

I have configured in this mode, but the asterisk’s cli tell me:

Registration from ‘“LinkSysPhone” sip:9253@192.168.1.31’ failed for ‘192.168.1.50’ - Not a local domain

where

Display Name: LinkSysPhone
User ID: 9253
Password: 1234
Auth ID: 9253

and the sip.conf is

[general]
port = 5060 ; Port to bind to (SIP is 5060)
realm=asterisk
domain=test
language=it

;LinkSys SAP901
[9253]
type=friend
username=9253
secret=1234
host=dynamic
realm=asterisk
context=from-sip
mailbox=9253
nat=no
canreinvite=no
allow=h263
allow=h263p
allow=ulaw
allow=gsm

:question: :frowning:

try adding to sip.conf general

bindaddr=0.0.0.0

also it might help to remove the domain=test
this is a bit how mine looks atm.

[code]context=phones ; standard context
videosupport=yes ; gives video support
allow=all ; allows all sound codec
realm=PBXtestomgeving.local ; Makes our domain
allowoverlap=no ; Disable overlap dialing support. (Default is yes)
bindport=5060 ; UDP Port to bind to (SIP standard port is 5060)
; bindport is the local UDP port that Asterisk will
; listen on
bindaddr=0.0.0.0 ; IP address to bind to (0.0.0.0 binds to all)
srvlookup=yes ; Enable DNS SRV lookups on outbound calls

                                    ; Note: Asterisk only uses the first host
                                    ; in SRV records
                                    ; Disabling DNS SRV lookups disables the
                                    ; ability to place SIP calls based on domain
                                   ; names to some other SIP users on the Internet

tcpenable=yes ; Enable server for incoming TCP connections (default is yes)
tcpbindaddr=0.0.0.0 ; IP address for TCP server to bind to (0.0.0.0 binds to all interfaces)
;domain=PBXtestomgeving.local ; Set default domain for this host
; If configured, Asterisk will only allow
; INVITE and REFER to non-local domains
; Use “sip show domains” to list local domains
;autodomain=yes
;regcontext=users
;
;regextenonqualify=yes
;rtcachefriends=yes ; Cache realtime friends by adding them to the internal list
; just like friends added from the config file only on a
; as-needed basis? (yes|no)
[/code]

thx
Now it works!!!

:smiley: