#!/usr/bin/env python3
# Copyright (c) 2011 Arista Networks, Inc.  All rights reserved.
# Arista Networks, Inc. Confidential and Proprietary.

print( """! ZeroTouch initial config file
!
zerotouch enable
!
logging console informational
!
logging level ALL errors
logging level ZTP informational
!
! Temporary workaround for bug477516, remove when bug477516 is fixed
logging policy match match-list ztpFilter discard
!
match-list input string ztpFilter
   10 match regex ETH-4
!
system control-plane
   no service-policy input copp-system-policy
!
banner login
No startup-config was found.

The device is in Zero Touch Provisioning mode and is attempting to 
download the startup-config from a remote system. The device will not  
be fully functional until either a valid startup-config is downloaded 
from a remote system or Zero Touch Provisioning is cancelled.

To cancel Zero Touch Provisioning, login as admin and type 
'zerotouch cancel' at the CLI. Alternatively, to disable Zero Touch  
Provisioning permanently, type 'zerotouch disable' at the CLI.  
Note: The device will reload when these commands are issued. 

EOF
!
!
end""" )

