Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by canflyguy

  1. canflyguy

    Call Pilot 100 only responds to a ping and no to IP address?

    Thanks on that. I'll try those suggestions on the 2nd system later tonight. The other system is all programmed and ready to go. The only thing I found, but it might be to do with something missing on my browser (and chances are the customer would never use it) is when I select group mailbox...
  2. canflyguy

    Call Pilot 100 only responds to a ping and no to IP address?

    Hi! I am able to ping the unit at 192.168.1.90 with no issues. When I try to connect using chrome I get: This site can’t be reached192.168.1.90 refused to connect. Try: Checking the connection Checking the proxy and the firewall ERR_CONNECTION_REFUSED I can connect to the unit using Edge or...
  3. canflyguy

    Call Pilot 100 only responds to a ping and no to IP address?

    Well, I'm back again after going onsite with this unit and not being able to get into it to change the IP to their range. I swear I got into the unit a couple of days ago by resetting cookies on my computer or something like that. Now I can't get into it and I even switched to another Call Pilot...
  4. canflyguy

    Call Pilot 100 only responds to a ping and no to IP address?

    Hello all. In the end it turned out that since I also use this same computer to connect with BCMs, the cache in both this computer and the other one that I have was not allowing me to access the Call Pilot. I've since cleared out the cookies and now both machines work. Dah. With two machines...
  5. canflyguy

    Call Pilot 100 only responds to a ping and no to IP address?

    I have a Call Pilot 100 that I changed to 192.168.1.90 figuring that I'd go on site and if that wasn't their IP range I would just change it again. I swear I could reach it here on my network to the 192.168.1.90. When I got onsite I found that they had a weird IP range, but when I tried...
  6. canflyguy

    CICS Call Pilot multi mailbox question

    You could just put up a CCR that says thank you for calling for after hours emergencys please press 1 or 2 or 3 etc to reach our after hours and then set up a branch as an external transfer. Then just change the number to whatever doctor is oncall.
  7. canflyguy

    I2050 Transfers back to office with no audio

    Hello, It seems when he transfers calls back to the office or parks them and then has the guy in the office try to pick up the call, there is no audio? I did something in a lot earlier posts about the secondary set of RTP ports that in the 28000 range that I've never forwarded. Could be it or...
  8. canflyguy

    Call Pilot lost all greetings and password? BCM450 6.0

    Turns out Voicemail was corrupted. DIDs would always go to the voicemail instead of following call forwarding. Deleted and restored the voicemail, re-entering all mailboxes, menus, greetings, tables. All good now!
  9. canflyguy

    Call Pilot lost all greetings and password? BCM450 6.0

    So you mean restore the telephone programming, but not the Call Pilot (Voicemail), right? Any comment as to the call forwarding not working from external numbers?
  10. canflyguy

    Call Pilot lost all greetings and password? BCM450 6.0

    The other issue with this unit is that there was call forwarding set for most of the sets in the office due to this Covid thing and people working from home, etc. The call forwarding still shows in place in the programming and when the extension number is called internally or through the...
  11. canflyguy

    Call Pilot lost all greetings and password? BCM450 6.0

    I just had a service call where all the greetings, queues and mailboxes were intact but all the mailboxes had lost their username recordings, greetings and passwords? Never seen this before, but found the customer had enabled external initialization. System is working fine, all mailboxes are...
  12. canflyguy

    Program Runs but can't format the data

    I'm new to this Python program so I'm experimenting and fighting with syntax and formatting. I've managed to figure out how to make this program execute and stay running but I can't figure out how to eliminate extra characters in the received data. When I run it, I get b'GET /8005551212&230'...
  13. canflyguy

    Keeping a socket open or some other kind of listening/monitoring program

    The last posting above with the code did work in terms of connecting with the equipment, but it would close after getting one string of data. In speaking with someone recently about this, it was suggested that I need to use a "session" connection rather than a socket. That way it remains open...
  14. canflyguy

    Keeping a socket open or some other kind of listening/monitoring program

    import socket import os from _thread import * ServerSocket = socket.socket() host = '192.168.1.142' port = 65432 ThreadCount = 0 try: ServerSocket.bind((host, port)) except socket.error as e: print(str(e)) print('Waitiing for a Connection..') ServerSocket.listen(5) def...
  15. canflyguy

    Keeping a socket open or some other kind of listening/monitoring program

    Actualy found another example that is running. The only thing that concerns me about it is that because the equipment that connects to this server app closes it's connection everytime it sends data, the thread count keeps going up on each connection. It concerns me that eventually it would cap...

Part and Inventory Search

Back
Top