Second attempt at split sshd settings
authorTollef Fog Heen <tfheen@err.no>
Sat, 13 Apr 2019 20:30:36 +0000 (22:30 +0200)
committerTollef Fog Heen <tfheen@err.no>
Sat, 13 Apr 2019 20:30:36 +0000 (22:30 +0200)
modules/ssh/templates/sshd_config.erb

index e96591d..32be972 100644 (file)
@@ -49,6 +49,26 @@ AuthorizedKeysFile /etc/ssh/userkeys/%u /var/lib/misc/userkeys/%u /etc/ssh/userk
 
 PasswordAuthentication no
 
+<%=
+  allnodeinfo = scope.lookupvar('site::allnodeinfo')
+  out = ''
+  settings = '#  Banner "You are coming from a debian.org host."'
+  allnodeinfo.keys.sort.each do |node|
+      next unless allnodeinfo[node].has_key?('ipHostNumber')
+      out += "# Match Address # #{node}"
+      out += allnodeinfo[node]['ipHostNumber'].collect do |ipnum|
+          if ipnum =~ /:/
+              "#{ipnum}/128"
+          else
+              "#{ipnum}/32"
+          end
+      end.join(',')
+      out += "\n"
+      out += settings
+  end
+  out
+%>
+
 Match Group sftponly
   AllowStreamLocalForwarding no
   AllowTCPForwarding no