code.fastix.org

Dateiansicht:

Datei:Projekte -> Linux:Netzwerk für Seminare -> Router_Server -> root -> bin -> status_seminarnet
md5:c18bb2ca55e77742f77888d1604242ec
sha1:3f0530b7716e034ec9c40684e662385de53874a4
Download-Link:Download
  1. #!/bin/bash
  2.  
  3. function printLine {
  4.         printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' -;
  5. }
  6.  
  7. clear;
  8.  
  9. printLine;
  10. echo "DHCP-Server:";
  11. printLine
  12. systemctl status isc-dhcp-server
  13.  
  14. printLine
  15. echo "DNS-Server:";
  16. printLine
  17. ps -C dnsproxy
  18.  
  19. printLine
  20. echo "Firewall/Nat:";
  21. printLine
  22. iptables -L FORWARD
  23. printLine
  24. echo "Routen:";
  25. route
  26.  
  27.  
  28.