This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
vyos-config/config-parts/service.sh

15 lines
424 B
Bash
Raw Normal View History

2023-03-29 13:30:45 -05:00
#!/bin/vbash
# NTP server
delete service ntp allow-client
set service ntp allow-client address '127.0.0.0/8'
set service ntp allow-client address '10.0.0.0/8'
set service ntp allow-client address '172.16.0.0/12'
set service ntp allow-client address '192.168.0.0/16'
delete service ntp server
set service ntp server time.cloudflare.com
2023-03-29 13:30:45 -05:00
# SSH server
set service ssh disable-password-authentication
set service ssh port '22'