मेरे पिछले उत्तर के लिए क्षमायाचना जिस तरह से मैंने इसे सालों पहले किया था। लगता है चीजें बदल गई हैं।
यह पता चलता है कि नेटवर्क प्रबंधक /etc/NetworkManager/dispatcher.d/
निर्देशिका में सभी स्क्रिप्ट चलाता है (जो रूट के स्वामित्व वाले हैं, जो निष्पादन योग्य हैं, जो अन्य उपयोगकर्ताओं द्वारा पठनीय नहीं हैं, और सेट्यूड नहीं हैं), जब कोई कनेक्शन बदलता है (ऊपर, नीचे, पूर्व-पूर्व, पूर्वनिर्धारित) ।
पर्यावरण चर नेटवर्क प्रबंधक द्वारा इस स्क्रिप्ट पर सेट और पारित किए जाते हैं। आपको CONNECTION_UUID पर्यावरण चर में रुचि होगी (जिसमें एक अद्वितीय स्ट्रिंग है)।
इसलिए, अपनी समस्या को हल करने के लिए (किसी विशेष वायरलेस नेटवर्क से कनेक्ट होने पर स्क्रिप्ट निष्पादित करें):
1) आप जिस वायरलेस कनेक्शन में रुचि रखते हैं, उसका यूआईडी पता करें ( /etc/NetworkManager/system-connections/
निर्देशिका में उपयुक्त कनेक्शन फ़ाइल के अंदर देखकर )।
2) एक बैश (या पर्ल, या पाइथन, या जो भी) स्क्रिप्ट लिखता है वह वही करता है जो आप चाहते हैं कि पर्यावरण चर CONNECTION_UUID ऊपर (1) में वायरलेस नेटवर्क के uid से मेल खाता है।
3) इस स्क्रिप्ट को डालें /etc/NetworkManager/dispatcher.d/
और स्वामी और अनुमतियों को उचित रूप से सेट करें।
आगे पढ़ना: मैन नेटवर्कमैन (और ऊपर उल्लिखित निर्देशिका में लिपियों के चारों ओर एक लिट्टी पोकिंग)।
एक उदाहरण स्क्रिप्ट:
#!/bin/bash
#####################################
# MounterBeast Script
# /etc/NetworkManager/dispatcher.d/02remotemount
# Copyright 2011 Nathan E. Williams
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Usage:
# This script must be customized for your configuration.
# By default, the script will attempt to mount a CIFS share
# when a specified MAC address is found at the network gateway,
# or over sshfs if the MAC address of the gateway is not the specified MAC.
# e.g. I mount over CIFS to the servers internal IP when at home, and
# over sshfs when away from home.
#
# id gateway mac without physically checking the sticker:
# $ arp -n -a $(ip route show 0.0.0.0/0 | awk '{print $3}') | awk '{print $4}'
#
# Testing:
# up) sudo /etc/NetworkManager/dispatcher.d/02remotemount wlan0 up
# down) sudo /etc/NetworkManager/dispatcher.d/02remotemount wlan0 down
#####################################
#
# Configuration:
#
targetmac='xx:xx:xx:xx:xx:xx'
mount_user='$USER'
mount_pass='pass'
internal_server_name='192.168.1.102'
external_server_name='my.dyndns.com'
share_name="music"
mount_point='/mnt/remote'
ssh_port='22'
#
# Should not need to edit below
#
gateway=$(ip route show 0.0.0.0/0 | awk '{print $3}')
mactest=$(arp -n -a $gateway | awk '{print $4}')
if [[ "$mactest" == "$targetmac" ]]
then
case "$2" in
up)
sleep 5
mount -t cifs -o username=$mount_user,password=$mount_pass //$internal_server_name/$share_name $mount_point
;;
down)
umount -l $mount_point
;;
esac
else
case "$2" in
up)
sleep 5
sshfs -p $ssh_port $external_server_name:$share_name $mount_point
;;
down)
umount -l $mount_point
;;
esac
fi
exit $?