Home > Enterprise >  How to connect FTP server through AWS Glue
How to connect FTP server through AWS Glue

Time:12-28

I have wrote python shell script in AWS GLUE using paramiko client to connect to FTP server, but connection is failing as FTP server owner has not given access to the VPC.

Now I need to add a subnet for Glue , so that I can provide that subnet IP to the FTP owner so he can provide access to the GLUE service, but I am not able to find out how to map or add that subnet to glue or create a subnet for Glue

Can someone help me with this?

CodePudding user response:

You can do the following to get an Elastic IP for the Glue and then whitelist in your FTP service.

  1. enter image description here

  2. Create an Elastic IP, and attach to the Glue Endpoint. Refer Access a development endpoint by attaching an Elastic IP address

  3. Use this Elastic IP for whitelisting in FTP service.

  • Related