Current Path: > > lib > dracut > modules.d > 35network-legacy
Operation : Linux premium88.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 Software : Apache Server IP : 185.61.154.216 | Your IP: 216.73.216.44 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
dhclient-script.sh | File | 9374 bytes | July 15 2025 09:09:21. | |
dhclient.conf | File | 303 bytes | October 08 2018 13:38:33. | |
ifup.sh | File | 15543 bytes | July 15 2025 09:09:22. | |
kill-dhclient.sh | File | 252 bytes | October 08 2018 13:38:33. | |
module-setup.sh | File | 2880 bytes | July 15 2025 09:09:21. | |
net-genrules.sh | File | 4109 bytes | July 15 2025 09:09:23. | |
parse-bond.sh | File | 2007 bytes | October 08 2018 13:38:33. | |
parse-bridge.sh | File | 1124 bytes | October 08 2018 13:38:33. | |
parse-ibft.sh | File | 283 bytes | October 08 2018 13:38:33. | |
parse-ifname.sh | File | 552 bytes | October 08 2018 13:38:33. | |
parse-ip-opts.sh | File | 4950 bytes | July 15 2025 09:09:22. | |
parse-team.sh | File | 1600 bytes | July 15 2025 09:09:21. | |
parse-vlan.sh | File | 662 bytes | October 08 2018 13:38:33. |
#!/bin/sh # # Format: # bridge=<bridgename>:<bridgeslaves> # # <bridgeslaves> is a comma-separated list of physical (ethernet) interfaces # bridge without parameters assumes bridge=br0:eth0 # parsebridge() { local v=${1}: set -- while [ -n "$v" ]; do set -- "$@" "${v%%:*}" v=${v#*:} done case $# in 0) bridgename=br0; bridgeslaves=$iface ;; 1) die "bridge= requires two parameters" ;; 2) bridgename=$1; bridgeslaves=$(str_replace "$2" "," " ") ;; *) die "bridge= requires two parameters" ;; esac } # Parse bridge for bridgename and bridgeslaves for bridge in $(getargs bridge=); do unset bridgename unset bridgeslaves iface=eth0 # Read bridge= parameters if they exist if [ "$bridge" != "bridge" ]; then parsebridge $bridge fi # Simple default bridge if [ -z "$bridgename" ]; then bridgename=br0 bridgeslaves=$iface fi echo "bridgename=$bridgename" > /tmp/bridge.${bridgename}.info echo "bridgeslaves=\"$bridgeslaves\"" >> /tmp/bridge.${bridgename}.info done
SILENT KILLER Tool