There are two work arounds (variously supported)
config t service unsupported-transceiveror
config t no errdisable detect cause gbic-invalidYou may need to reload the switch or re-seat the GBIC's to get them working.
Helpful bits and bytes
config t service unsupported-transceiveror
config t no errdisable detect cause gbic-invalidYou may need to reload the switch or re-seat the GBIC's to get them working.
for i in *; do echo -n "$i: "; find $i -type f | wc -l; done
_domainKey.domain.com. IN TXT ( "p=part of your key"
"another part of your key"
"last part of your key" )
By wrapping the entire value in brackets we keep it tied to one record and by quoting each line individually it allows us to surpass the line limit.dns_rdata_fromtext: near eol: unbalanced quotes dns_master_load: label too long dns_master_load: syntax error zone: loading master file: ran out of space
netstat -an | grep :80 | grep -i syn | wc -l
echo 1 > /proc/sys/net/ipv4/tcp_syncookies echo 2048 > /proc/sys/net/ipv4/tcp_max_syn_backlog echo 3 > /proc/sys/net/ipv4/tcp_synack_retriesTo make these persist across reboots, enter the following into /etc/sysctl.conf
net.ipv4.tcp_syncookies = 1 net.ipv4.tcp_max_syn_backlog = 2048 net.ipv4.tcp_synack_retries = 3It is also recommended you install CSF firewall to help your servers' security. CSF also includes SYN Flood mitigation at the firewall iptables/firewall level.
grep -ir "$ip_address" /var/cpanel/*.accts | awk '{print $1}' | cut -d, -f1
SELECT id,user,db,command,time,state FROM INFORMATION_SCHEMA.PROCESSLIST order by user;