[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
etc
/
sysconfig
/
network-scripts
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 ifcfg-eno1
343 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifcfg-eno1:1
345 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifcfg-eno2
268 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifcfg-lo
254 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown
2,123 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown-Team
1,621 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown-TeamPort
1,556 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown-bnep
646 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown-eth
6,419 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown-ippp
769 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown-ipv6
4,536 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown-isdn
769 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown-post
2,064 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown-routes
870 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown-sit
1,458 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown-tunnel
1,462 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup
5,463 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-Team
1,755 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-TeamPort
1,876 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-aliases
12,270 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-bnep
906 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-eth
13,776 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-ippp
12,068 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-ipv6
11,891 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-isdn
12,068 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-plip
643 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-plusb
1,057 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-post
5,000 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-routes
2,427 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-sit
3,303 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-tunnel
2,879 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup-wireless
1,836 B
SET
[ EDIT ]
|
[ DEL ]
📄 init.ipv6-global
5,421 B
SET
[ EDIT ]
|
[ DEL ]
📄 network-functions
20,431 B
SET
[ EDIT ]
|
[ DEL ]
📄 network-functions-ipv6
31,037 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: ifdown-Team
#!/bin/sh # Copyright (C) 2012-2015 Jiri Pirko <jiri@resnulli.us> # # This library 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; either # version 2.1 of the License, or (at your option) any later version. # # This library 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 # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . /etc/init.d/functions cd /etc/sysconfig/network-scripts . ./network-functions [ -f ../network ] && . ../network CONFIG=${1} need_config "${CONFIG}" source_config if [ "${DEVICETYPE}" = "Team" ]; then # This means that this was called directly, not via ifdown-eth # so execute ifdown-eth now. /etc/sysconfig/network-scripts/ifdown-eth ${CONFIG} $2 fi if [ -n "${TEAM_CONFIG}" ]; then if [ ! -x /usr/bin/teamd ]; then net_log $"Team support not available: teamd not found" exit 1 fi # Bring down all existing port devices now for device in $(LANG=C egrep -l "^[[:space:]]*TEAM_MASTER=\"?${DEVICE}\"?" /etc/sysconfig/network-scripts/ifcfg-*) ; do is_ignored_file "$device" && continue /sbin/ifdown ${device##*/} done /usr/bin/systemctl stop teamd@${DEVICE}.service --ignore-dependencies || exit 1 fi