add remove bridge function.

This commit is contained in:
primardj 2024-02-01 03:34:41 +00:00
parent 20380fbd50
commit 9d27a4590d

View file

@ -17,20 +17,19 @@ PARAMETTER available
OPTION available
--bridge-id=<bridge-id> Set the name for the new bridge interface, usually it is br0, br1, etc
--add-br-id=<bridge-id> Set the name for the new bridge interface, usually it is br0, br1, etc
--rm-br-id=<bridge-id> Remove a bridge interface. Be carefull, it do no verification wheither bridge-id is a real interface or a bridge interface.
--addr=<address> Set an external address on the bridge. The external address have to be on the same network as one of the host network interface. e.g. if eth0, wlan0, etc is on 192.168.0.2/24, you should put the address on the network 192.168.0.0/24. Please not that the CIDR notation have to be use. #TODO
--replace=<interface> In case you want to replace the main connexion of your computer so that only the vm will be able to reach the external network, replace interface by the interface you want to replace, and make sure that the --addr is set to one of the ip on the interace. Please not that it will be possible for your host to lost all connection to the external internet with this parametter.
"
Version="1.0"
main() {
echo "Enter main function."
add_bridge() {
echo "add bridge interface ${bridge}"
read -p "use ctrl-C to cancel, or any other key to continue." jaaj
${rooter} ip link add ${bridge} type bridge
echo "no interface to link with bridge ${bridge}"
#echo "no interface to link with bridge ${bridge}"
#$rooter ip link set dev wlan0 master br0
echo "authorise qemu to use as interface ${bridge} as bridge"
@ -43,12 +42,19 @@ main() {
fi
echo "activate bridge ${bridge}"
read -p "use ctrl-C to cancel, or any other key to continue." jaaj
${rooter} ip link set dev ${bridge} up
}
rm_bridge() {
echo "rm bridge interface ${bridge}"
${rooter} ip link del ${bridge}
}
# detect the parametters
for i in $@; do
@ -65,12 +71,34 @@ for i in $@; do
done
# check if sudo is installed
if which doas &> /dev/null
then
echo "use doas"
rooter=$(which doas)
elif which sudo &> /dev/null
then
echo "use sudo"
rooter=$(which sudo)
else
echo "no command to give access to root is given. Abandon" >&2
exit
fi
# detect the options
for i in $@; do
case "${i%=*}" in
"--bridge-id")
"--add-br-id")
bridge="${i#*=}"
echo "${bridge}"
add_bridge
;;
"--rm-br-id")
bridge="${i#*=}"
echo "${bridge}"
rm_bridge
;;
"--addr")
address="${i#*=}"
@ -89,25 +117,11 @@ done
if [ "${bridge}" == "" ]
then
echo "Error, --bridge-id have to be specified to make the bridge" >&2
echo "Error, --bridge have to be specified to make the bridge" >&2
exit
fi
# check if sudo is installed
if which doas &> /dev/null
then
echo "use doas"
rooter=$(which doas)
elif which sudo &> /dev/null
then
echo "use sudo"
rooter=$(which sudo)
else
echo "no command to give access to root is given. Abandon" >&2
exit
fi
main