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

18 lines
539 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'
2024-02-20 06:50:50 -06:00
# TFTP server
set service tftp-server directory '/config/tftpboot'
set service tftp-server listen-address 10.1.1.1