Ask HN: Websense blocking encrypted.Google.com?
1 pointsby GaryGapinski0 comments
C:\Users\gapinski>certutil -verifyCTL disallowed|more
LastSyncTime = "9/23/2015 3:33 AM"
[DisallowedCTL]
ListIdentifier = "DisallowedCert_AutoUpdate_1"
SequenceNumber = 01d0f584a9ad12f7
ThisUpdate = "9/22/2015 6:18 PM"
NextUpdate = EMPTY
SubjectAlgorithm = 1.3.6.1.4.1.311.10.11.15, "disallowedHash"
SignerExpiration = "8/14/2016 1:13 PM", "326.4 Days"
CTLEntries = 57
… apt-get install openssh-server
apt-get install fail2ban
ufw allow OpenSSH
ufw enable
I use the following suffix to the /etc/ssh/sshd_config file: …
72 #
73 # local tweaks
74 #
75 Protocol 2
76 PermitRootLogin no
77 Banner /etc/ssh/banner
78 UseDNS yes
79 MaxStartups 1
80 LoginGraceTime 15
81 PubkeyAuthentication yes
82 PasswordAuthentication no
83 ChallengeResponseAuthentication no
84 X11Forwarding yes
85 AllowTcpForwarding yes
86 DebianBanner no
87 Match Address 192.168.0.0/24,127.0.0.1,192.168.1.0/24
88 PasswordAuthentication yes
Line 82 should be commented out until you have generated an SSH key pair and placed the public key in ~/.ssh/authorized_keys, as it prevents logins using just a password. Lines 87-88 remove this restriction for local nets. Line 77 references a banner that you can provide which is presented upon SSH connection.