跳到主要內容

發表文章

目前顯示的是 2017的文章

Voip SPA3000/9000 設定

架設Voip 1.Analog Telephone Adaptor (ATA) 一個類比電話轉換到基於數位VoIP電話網路 An ATA contains the following components: FXS Ports – Used for interfacing with analog telephones. RJ45 Ports – Used for interfacing with the LAN/WAN FXO Ports – Used for interfacing with the PSTN 2.網絡電話交換機(IPPBX) 能通過IP網提供語音、視頻以及即時消息通信。這些通信不僅可以在企業內部網上進行,也可以通過Internet與外網甚至PSTN(Public Switched Telephone Network)電話間進行。 3.網路電話(IPPHONE) SPA921、支援SIP應用程式或電話 SPA3000設定 參照: 安德森技術備忘板 參照 OSSLab 的設定設完發現會PSTN接到來電時 等到 PSTN Answer Delay 秒數過後將會自動接起外線 仍然等待Voip分機接起話筒可能會造成撥打者不必要的電話費 可能原因是 Off Hook While Calling VoIP  被設為Yes SPA9000設定 Wan Setup Internet Connection Settings Connection Type: DHCP Static IP PPPOE PPPOE,DHCP DHCP,PPPOE SIP Hunt Groups: 設定群組獵線 群組號碼為500,分機100-102, 響鈴300秒 回到SPA3000 PSTN Line Dial Plan 2: 來電時將轉接至群組 發現的問題: 剛開機使用SPA3000 LINE1 撥打至PSTN Line 分機 在打外線會導致所有分機都將無法在外線 開完機後先用其他分機撥打測試後就可正常使用

nodemcu 紀錄

首頁: http://www.nodemcu.com/index_en.html ESP Flash Download Tool (flasher) http://bbs.espressif.com/viewtopic.php?f=57&t=433 https://github.com/espressif/ESP8266_NONOS_SDK # 1.Build NodeMCU firmware https://nodemcu-build.com/index.php modules:  adc   bit   coap   cron   crypto   encoder   enduser_setup   file   gpio   http   i2c mqtt   net   node   ow   pwm   sjson   sntp   spi   tmr   uart   websocket   wifi . https://drive.google.com/file/d/0Bx2A-Jefadp8amFJTkpVWDJTX3M/view?usp=sharing # 2.燒錄 https://github.com/nodemcu/nodemcu-flasher You successfully commissioned a NodeMCU custom build from the  master  branch. You selected the following 23 modules:  adc   bit   coap   cron   crypto   encoder   enduser_setup   file   gpio   http   i2c mqtt   net   node   rtcfifo   rtcmem   rtctime   sjson   sntp   struct   tmr   uart   wifi . You successfully commissioned a NodeMCU custom build from the  master  branch. You selected the following 22 modules:  adc   bit

解決 .NET Core 使用 MailKit 無法送信

在使用MailKit 送信時 測試時使用的SMTP server 需要使用者認證 測試時也OK 當把程式放到正式站台時 本以為是需要使用者認證的所以程式原封不動放上去 發現信送不出去!? 在網路上GOOGLE 一番 以為是下面問題 http://www.cnblogs.com/davytitan/p/6650050.html 把 client.QueryCapabilitiesAfterAuthenticating = false; 補上去就行 結果還是不行!?!??? 最後發現正式站台上給的SMTP server 只有認IP且不需要使用者認證 解決方法為: MailKit 使用上憑證一直出錯 使用以下繞過 client.ServerCertificateValidationCallback = delegate { return true; }; 認證部分註解 //var creds = new NetworkCredential(acc, pass, domain); //client.Authenticate(creds); 認證部分不註解他也會出現錯誤給你看!