查看“SBC远端电话注册支持”的源代码
←
SBC远端电话注册支持
跳转至:
导航
、
搜索
因为以下原因,你没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:用户
您可以查看并复制此页面的源代码:
介绍 外网电话注册支持外网员工在家里,其他地方可以轻松注册到公司的IPPBX,用户可以在家办公,或者使用手机APP访问IPPBX网络,用户手机APP可以成为一个分机终端来实现呼叫。 SBC在这个环境中扮演的是 far-end NAT traversal 支持外网注册,而不需要VPN隧道支持。注意,SBC同时也可以作为SIP对接的功能来简化远端访问。 http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/1.png PBX IP: 192.168.1.10 SBC LAN IP: 192.168.1.20 SBC DMZ IP: 10.10.32.170 SBC Public IP: 104.145.12.182 SBC FQDN: remote.sangoma.com ;;;1) Network Setup 访问 Configuration->IP Settings->Network,然后编辑 eth0 设置为 DMZ IP 地址。下一步点击 Add 按钮,给eth1 添加一个IP 地址, 输入 IP 地址和 subnet: http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/2a.png 完成配置后,会看到地址 eth0 和 eth1. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/2.png 下一步,访问 Configuration -> IP Settings -> Media Interfaces 并且点击 Edit. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/3.png 修改 Transcoding Mode 为 Hardware Hidden mode。然后点击保存。 http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/4.png 下一步,点击 Detect Modules。完成模块检测后,点击 OK 继续。 http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/5.png ;;;2) SIP Profile Configuration 访问 Configuration -> Signaling -> SIP Profiles ,并且点击 Modify 来设置默认的 internal SIP profile. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/11.png 确认SIP IP 地址为 LAN IP 地址。然后开启 SIP Trace option. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/12.png 下一步,查看 Authentication section 并且关闭 Authenticate Calls。 此选项仅支持当远端电话注册到本地SBC SIP 帐号。完成后保存此internal profile。 http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/13.png 下一步,添加一个新的profile,我们称之为 external。 http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/14.png External SIP profile 设置的 External SIP IP Address 和 External RTP IP 地址到公网IP,同时也开启SIP Trace option。 http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/15.png 下一步,因为我们配合的是internal SIP profile, 需要关闭authenticate calls 。 因为远端终端在NAT 后,所以注册到 PBX 开启所有的 NAT options ,如图所示: http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/16.png ;;;3) Adding SIP Trunk to PBX 访问 Configuration -> Signaling -> SIP Trunks ,点击添加Add,命名一个SIP trunk PBX. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/17.png Set the Domain to be the IP address of the PBX. Enable OPTIONS by setting the Frequency and Max/Min Pings as shown below. Once done click Save. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/18.png ;;;4) Configuring the SIP Domain Go to Configuration -> Signaling -> Domains and click Add. Set the name of the domain to the FQDN or IP the remote phones will be registering to. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/19.png Next enable Forward Registration/Authentication as shown below. Set the Forward SIP profile to Internal. Then it is recommended to Force the Expires time to around 300-600 seconds; this will force the phones to register every 5-10 minutes. The short time period will ensure the registration information is current and correct. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/20.png Next go to Configuration -> Signaling -> SIP Profiles and click Modify on the External SIP Profile. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/21.png Then click Bind under the Domain section. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/22b.png Select your domain from the list and click Bind. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/22.png Your domain will now be bound to the SIP profile. This will allow Remote phones to register to your External SIP Profile. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/23.png ;;;5) Configuring the Call Routing Go to Configuration -> Routing -> Call Routing and then click the Add button in the Basic Call Routing section to add a new routing plan. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/31.png Name the new routing plan internal and then click Add. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/32.png Once in the new routing plan click Add to add a new rule. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/33.png In the new rule change the stop policy to Stop On Failure. Add the condition below to verify all internal calls orginate from the PBX's IP address. To do this use the network_addr variable as shown below. Ensure the actions to perform if the condition doesn't match is set to respond with a 403. Once done click Save to continue. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/34.png Next click Add to add a new rule. In the new rule set the condition based off the Destination Address. The condition will be (.*). The action will need to be a custom action and the application will be bridge. The data will be ${sofia_contact(external/$1@remote.sangoma.com) . The "external" part is the name of the external facing SIP profile. The "remote.sangoma.com" part is the domain the users are registering to. These are the two pieces that may change on a per installation basis. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/35.png Next go back to the call routing and add a new routing plan as we did in step 1-2 above. Name the new routing plan external. This will be used for the external SIP profile. In the new routing plan add only one rule. The condition will be (.*) and based on the Destination Address. Then the action will be bridge to trunk. The Trunk will be the SIP trunk named PBX with the destination $1 as shown below. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/36.png Now that both routing plans are made go to Configuration -> Signaling -> SIP Profiles and modify the internal SIP profile. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/37.png In the internal SIP profile under Session Routing change the Routing Plan to Internal. Then click Save to continue. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/38.png Next go back to Configuration -> Signaling -> SIP Profiles and this time click Modify next to the External SIP profile. Once in the External SIP profile, go to the Session Routing section and change the Routing Plan to External. Then click save http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/39.png ;;;6) Finalizing the Installation Go to Overview -> Dashboard -> Control Panel and start the following services. Vega Session Controller IP Firewall Intrusion Detection Intrusion Prevention http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/41.png Enable all IDS rules by going to Configuration -> Security -> Intrusion Detection and ensuring all are checked. Once done click Update to apply the changes. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/42.png Next go to System -> Server -> Web and change the Network Interface from All interfaces to only the internal network interface. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/43.png In this example eth1 is the internal network interface. Once done click Save. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/44.png Next go to System -> Server -> Web and change the Network Interface from All interfaces to only the internal network interface. Now both the web server and SSH will only be available on your internal network. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/45.png Since the configuration is now completed get a backup. Go to System -> Management -> Backup-Restore and click Backup. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/46.png Name the file accordingly and click backup to download a copy. Ensure you keep this safe somewhere and always take a new backup after each change made to the SBC. http://wiki.sangoma.com/files/SBC-Remote-Phone-Support/47.png
返回至
SBC远端电话注册支持
。
导航菜单
个人工具
登录
命名空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
最近更改
合作伙伴
FreePBX官方
IPPBX软硬件
SIP 终端话机
SBC
语音网关,Sangoma语音板卡
工具
链入页面
相关更改
特殊页面
页面信息