Disconnect scripts


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Disconnect scripts
# 1  
Old 12-23-2010
Disconnect scripts

I think I read that by entering "disconnect <script_name>" somewhere in pppd, that when ppp connection is lost that the named script will be executed. I also see that something similar can be (if I read correctly) in ip-down. Which is correct or are both correct. I want to set off the system alarm on my Linux machine whenever the "carrier" signal is lost. Has someone done this?
# 2  
Old 12-23-2010
The usual thing is a ping, not too often, of a host out there but nearby, like the ISP DNS or MAIL server. If you cannot ping their dns server, your connection is not very useful. In fact, nslookup test-addr dns-server-ip could do the same thing! Stick it in the cron. This does not complicate anything else, and does not stop checking for any reason.
# 3  
Old 12-24-2010
Disconnect scripts

I can see that would work and I thought about using a separate terminal or cron but those increase overhead and are a pain to set up/down each time whereas a disconnect/ip-down script "IF" it would be executed after a carrier loss is only used if needed which is what I want. Just don't know about when/if either of those kicks in, hence my query.
# 4  
Old 12-24-2010
Well, you need to set an externall visible marker before you request a dial in and reset it when you request a disconnect. Then the ping or nsloopup monitor skips until the next connect. Horsepower is cheap, but the wrong approach can be partial or fragile: possibly necessary but not sufficient, where a better approach can finess all the problems and limitations. Heck, I think I need it for my VPN connection, which seems to wink out now and then and leave ie and outlook all confused.

Too bad what you have is not like Always On ISDN -- the folly of the phone company was so overpriced that we call it I Smell Dollars Now, but it had a nice enhancement where you could always get 1200 bytes per second through the D=dialer channel to support email and other low BW apps, so you were virtually always on. It acquired more B=Basic POTS = 56-64KBit channels temporarily for higher BW. Smilie

Last edited by DGPickett; 12-24-2010 at 11:07 AM..
# 5  
Old 12-25-2010
[SOLVED] Disconnect scripts

I ran a test using ip-down in /etc/ppp. I have problems with system beep and the system flipping my sound device cards via whimsy so have not used a beep to alert me when the connection gets lost but I was able to write to a file immediately when I switched off my 56K modem. Now I will try to add an alarm sound. I should try using the disconnect script but maybe later.
# 6  
Old 12-26-2010
Yes, if you can reliably do something quick and simple like a status file, you might let a watcher script take care of the rest.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Trigger the execution of a script on SFTP Disconnect

Hi Guys, I suspect what I'm trying to do isn't possible, but I'm hoping someone can either confirm this or point me in the right direction. We have a third-party application which transfers a collection of files to our SFTP server ( Ubuntu 12.04 with OpenSSH ) . Once the app disconnects, we... (13 Replies)
Discussion started by: jamesdrinkwater
13 Replies

2. Shell Programming and Scripting

Connect once db disconnect after all execution

Hi All, Please see the below code. it is working fine when in 'test_file' have only one emplid. test_file contains only emplid and date, like below ... 0000221|1/12/2003 0000223|1/1/1996 Problem :- when test_file contains more then one records(emplids) it is not giving any errors... (3 Replies)
Discussion started by: krupasindhu18
3 Replies

3. Linux

Received disconnect from IP address: too many failed userauth_requests

Hi i am getting below error when doing ssh to the destination server. Please assist (1 Reply)
Discussion started by: prash358
1 Replies

4. UNIX for Dummies Questions & Answers

How to disconnect telnet prompt with port no in script.

Hi Gurus, I am trying to write a script for checking the status of linux servers by connecting via telnet with port no but to terminate i have to manually type "quit" .how can i terminate the telnet session in script itself.For E.g ========================================= telnet ipaddress... (3 Replies)
Discussion started by: kapil514
3 Replies

5. Shell Programming and Scripting

In real time - what user connects or disconnect

Write a tool that will be displayed in real time, what user connects or disconnects from a system that uses this tool :)) Maybe anyone can help me? (2 Replies)
Discussion started by: titasas
2 Replies

6. Shell Programming and Scripting

vpn connect/disconnect shell script

Hi I am not so good in scripting..trying ot learn it...need guidance of the experts in shell scripting.. Let me explain the scenario first.. a server MX1 is connected to another server MX2 through vpn..every 5 minute a script runs to test vpn connectivity between the 2 servers.when the vpn... (12 Replies)
Discussion started by: renuka
12 Replies

7. Shell Programming and Scripting

Is it possible..when ftp session disconnect and it can automatic run again?

Hi, Is is possible when ftp script disconnect by remote server and it can restart to tranfer (such as restart in 10 mins, etc)? Please help!!!! (1 Reply)
Discussion started by: happyv
1 Replies

8. Shell Programming and Scripting

after server disconnect ftp tranfer......

Hi, I have a problem for ftp file to server. If the server due to some reason (such as unstable) and disconnect my ftp script. Can the ftp keep automatic retry to connect? If yes, the files can be keep sending to host without duplicate? HOST=hostname USER=happyv PASSWD=happyv exec 4>&1... (2 Replies)
Discussion started by: happyv
2 Replies

9. UNIX for Advanced & Expert Users

Force user to disconnect if no activity

Does anybody know how to force a user to automatically logoff a UNIX session if there is no keyboard activity for a period of time? We use COBOL and there is a BEFORE TIME option on the ACCEPT command, however, we do not want to change the many programs we have to detect this. What we really... (3 Replies)
Discussion started by: MarkN
3 Replies

10. UNIX for Dummies Questions & Answers

Connect over ssh, start something, disconnect

i'm connecting with ssh from a windows pc to a linux system. i want to start e.g. a download and close my session afterwards. how do i do this without killing the download? thx in advance. (2 Replies)
Discussion started by: sTorm
2 Replies
Login or Register to Ask a Question