Add a hook to run when NetworkManager connects
What would be a good way to make a script run every time my computer connects to the network in Ubuntu? Would I somehow use dbus to do this?
Background: when I'm on the train I run a short Perl script to click a button on the splash page. That way I can immediately use the internet without having to manually visit a pointless website. My script is a near-perfect solution, but it would be perfect if it could run automatically any time I connect to the network.
networkmanager dbus
add a comment |
What would be a good way to make a script run every time my computer connects to the network in Ubuntu? Would I somehow use dbus to do this?
Background: when I'm on the train I run a short Perl script to click a button on the splash page. That way I can immediately use the internet without having to manually visit a pointless website. My script is a near-perfect solution, but it would be perfect if it could run automatically any time I connect to the network.
networkmanager dbus
1
not important to the question, but here is the one-liner: alias dodgesplash='perl -e '''use WWW::Mechanize; $mech = WWW::Mechanize->new(); $mech->get("is.gd"); $mech->click();''''
– rplevy
Feb 27 '10 at 1:07
add a comment |
What would be a good way to make a script run every time my computer connects to the network in Ubuntu? Would I somehow use dbus to do this?
Background: when I'm on the train I run a short Perl script to click a button on the splash page. That way I can immediately use the internet without having to manually visit a pointless website. My script is a near-perfect solution, but it would be perfect if it could run automatically any time I connect to the network.
networkmanager dbus
What would be a good way to make a script run every time my computer connects to the network in Ubuntu? Would I somehow use dbus to do this?
Background: when I'm on the train I run a short Perl script to click a button on the splash page. That way I can immediately use the internet without having to manually visit a pointless website. My script is a near-perfect solution, but it would be perfect if it could run automatically any time I connect to the network.
networkmanager dbus
networkmanager dbus
asked Feb 27 '10 at 1:05
rplevyrplevy
167116
167116
1
not important to the question, but here is the one-liner: alias dodgesplash='perl -e '''use WWW::Mechanize; $mech = WWW::Mechanize->new(); $mech->get("is.gd"); $mech->click();''''
– rplevy
Feb 27 '10 at 1:07
add a comment |
1
not important to the question, but here is the one-liner: alias dodgesplash='perl -e '''use WWW::Mechanize; $mech = WWW::Mechanize->new(); $mech->get("is.gd"); $mech->click();''''
– rplevy
Feb 27 '10 at 1:07
1
1
not important to the question, but here is the one-liner: alias dodgesplash='perl -e '''use WWW::Mechanize; $mech = WWW::Mechanize->new(); $mech->get("is.gd"); $mech->click();''''
– rplevy
Feb 27 '10 at 1:07
not important to the question, but here is the one-liner: alias dodgesplash='perl -e '''use WWW::Mechanize; $mech = WWW::Mechanize->new(); $mech->get("is.gd"); $mech->click();''''
– rplevy
Feb 27 '10 at 1:07
add a comment |
2 Answers
2
active
oldest
votes
Put a script in /etc/network/if-up.d
and make it executable.
add a comment |
You can put a script in /etc/NetworkManager/dispatcher.d
which will be run whenever a connection goes up or down. See the man page for NetworkManager
for the details.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f114099%2fadd-a-hook-to-run-when-networkmanager-connects%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Put a script in /etc/network/if-up.d
and make it executable.
add a comment |
Put a script in /etc/network/if-up.d
and make it executable.
add a comment |
Put a script in /etc/network/if-up.d
and make it executable.
Put a script in /etc/network/if-up.d
and make it executable.
answered Jul 31 '10 at 19:14
Ryan ThompsonRyan Thompson
6,83383760
6,83383760
add a comment |
add a comment |
You can put a script in /etc/NetworkManager/dispatcher.d
which will be run whenever a connection goes up or down. See the man page for NetworkManager
for the details.
add a comment |
You can put a script in /etc/NetworkManager/dispatcher.d
which will be run whenever a connection goes up or down. See the man page for NetworkManager
for the details.
add a comment |
You can put a script in /etc/NetworkManager/dispatcher.d
which will be run whenever a connection goes up or down. See the man page for NetworkManager
for the details.
You can put a script in /etc/NetworkManager/dispatcher.d
which will be run whenever a connection goes up or down. See the man page for NetworkManager
for the details.
answered Apr 4 '12 at 10:27
Sam MorrisSam Morris
55467
55467
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f114099%2fadd-a-hook-to-run-when-networkmanager-connects%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
not important to the question, but here is the one-liner: alias dodgesplash='perl -e '''use WWW::Mechanize; $mech = WWW::Mechanize->new(); $mech->get("is.gd"); $mech->click();''''
– rplevy
Feb 27 '10 at 1:07