From 9ee44a1a764782a520f7e5b6336e623c36075218 Mon Sep 17 00:00:00 2001 From: Kshitij Date: Wed, 9 Oct 2024 11:32:05 +0530 Subject: [PATCH] Added C11 in testing --- Codes/Code-C11.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Codes/Code-C11.py diff --git a/Codes/Code-C11.py b/Codes/Code-C11.py new file mode 100644 index 0000000..3a472b4 --- /dev/null +++ b/Codes/Code-C11.py @@ -0,0 +1,34 @@ +import paramiko + +def install_dhcp_server(remote_host, username, password): + # Create an SSH client + ssh = paramiko.SSHClient() + ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + + try: + # Connect to the remote machine + ssh.connect(remote_host, username=username, password=password) + + # Update package list + stdin, stdout, stderr = ssh.exec_command('sudo apt update') + stdout.channel.recv_exit_status() # Wait for the command to complete + + # Install ISC DHCP Server + stdin, stdout, stderr = ssh.exec_command('sudo apt install -y isc-dhcp-server') + stdout.channel.recv_exit_status() # Wait for the command to complete + + # Optional: you can add more commands to configure the DHCP server here + print("DHCP server installed successfully.") + + except Exception as e: + print(f"An error occurred: {e}") + + finally: + # Close the SSH connection + ssh.close() + +if __name__ == "__main__": + remote_host = "192.168.1.100" # Replace with your remote machine's IP + username = "your_username" # Replace with your SSH username + password = "your_password" # Replace with your SSH password + install_dhcp_server(remote_host, username, password)