This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Some of these files are uploaded to Landscape server | |
PAC_FILE_LOCATION="http://<zscaler-pac-config-file-location/file.PAC" | |
CA_TAR="zscaler.tar.gz" | |
CA_CERTIFICATE_NAME="<zscaler-root-ca-certificate-name-replace-me.crt>" | |
CERT_DIR_PATH="/usr/local/share/ca-certificates" | |
# Import ZSCALER Public CA Root Cert | |
sudo apt-get install libnss3-tools -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface=eth1 | |
bind-interfaces | |
domain=pxe.local | |
dhcp-range=eth1,192.168.100.51,192.168.100.55,255.255.255.0,8h | |
dhcp-option=3,192.168.100.2 # gateway | |
dhcp-option=6,192.168.100.2 # dns | |
enable-tftp | |
tftp-root=/srv/tftp | |
dhcp-vendorclass=BIOS,PXEClient:Arch:00000 | |
dhcp-vendorclass=UEFI32,PXEClient:Arch:00006 |