1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
$NetBSD: patch-scripts_netbsd_network,v 1.2 2016/12/23 04:11:03 ryoon Exp $
--- scripts/netbsd/network.orig 2016-12-17 20:49:31.242238289 +0000
+++ scripts/netbsd/network
@@ -0,0 +1,103 @@
+#!/bin/sh
+##########################################################
+# Copyright (C) 2010-2016 VMware, Inc. All rights reserved.
+#
+# This program is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation version 2.1 and no 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 Lesser GNU General Public
+# License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+##########################################################
+
+##########################################################################
+# DO NOT modify this file directly as it will be overwritten the next
+# time the VMware Tools are installed.
+##########################################################################
+
+#
+# network (FreeBSD 6.3 and above)
+#
+# This script uses FreeBSD's rc(8) scripts to stop and restart networking
+# services in response to suspend and resume events, respectively.
+#
+
+
+echo `date` ": Executing '$0'"
+echo
+
+. `dirname "$0"`/../../statechange.subr
+
+
+#
+# ToggleNetwork --
+#
+# Sources native configuration files in a subshell and executes native
+# scripts to either start or stop networking services associated with
+# a single interface.
+#
+# Results:
+# See description above.
+#
+# Side effects:
+# All side effects implied by FreeBSD's netif script.
+#
+
+ToggleNetwork() {
+ (
+ . /etc/rc.subr
+ . /etc/network.subr
+
+ load_rc_config network
+
+ for intf in `list_net_interfaces dhcp`; do
+ /etc/rc.d/netif $1 $intf
+ ec=$?
+
+ # Failure to stop an interface should not interfere with suspend.
+ if [ "$1" != "stop" ]; then
+ exitCode=`expr $exitCode \| $ec`
+ fi
+ done
+ )
+}
+
+
+#
+# main --
+#
+# Main entry point. Perform some sanity checking, then map state change
+# events to relevant networking operations.
+#
+# Results:
+# See comment at top of file.
+#
+
+main() {
+ exitCode=0
+
+ [ -r /etc/rc.subr ] || Panic "Cannot read /etc/rc.subr."
+ [ -r /etc/network.subr ] || Panic "Cannot read /etc/network.subr"
+ [ -x /etc/rc.d/netif ] || Panic "Cannot read /etc/rc.d/netif"
+
+ case "$1" in
+ suspend-vm)
+ ToggleNetwork stop
+ ;;
+ resume-vm)
+ ToggleNetwork start
+ ;;
+ *) ;;
+ esac
+
+ return $exitCode
+}
+
+main "$@"
|