45 lines
993 B
Bash
45 lines
993 B
Bash
#!/usr/bin/env bash
|
|
|
|
# =============
|
|
# --- Define Ports for Services out
|
|
# =============
|
|
|
|
standard_ident_port=113
|
|
standard_silc_port=706
|
|
standard_irc_port=6667
|
|
standard_jabber_port=5222
|
|
standard_smtp_port=25
|
|
standard_ssh_port=22
|
|
standard_http_port=80
|
|
standard_https_port=443
|
|
standard_ftp_port=21
|
|
standard_tftp_udp_port=69
|
|
standard_ntp_port=123
|
|
standard_snmp_port=161
|
|
standard_snmp_trap_port=162
|
|
standard_timeserver_port=37
|
|
standard_pgp_keyserver_port=11371
|
|
standard_telnet_port=23
|
|
standard_whois_port=43
|
|
standard_cpan_wait_port=1404
|
|
standard_xymon_port=1984
|
|
standard_hbci_port=3000
|
|
standard_mysql_port=3306
|
|
standard_ipp_port=631
|
|
standard_cups_port=$standard_ipp_port
|
|
standard_print_raw_port=515
|
|
standard_print_port=9100
|
|
standard_remote_console_port=5900
|
|
|
|
# - IPsec - Internet Security Association and
|
|
# - Key Management Protocol
|
|
standard_isakmp_port=500
|
|
standard_ipsec_nat_t=4500
|
|
|
|
|
|
# - Comma separated lists
|
|
# -
|
|
standard_http_ports="80,443"
|
|
standard_mailuser_ports="587,465,110,995,143,993"
|
|
|