Some of the tasks in my work-in-progress DAG (https://gitlab.wikimedia.org/repos/data-engineering/airflow-dags/-/merge_requests/1957) need to connect to the Enterprise API, and my task expects to reach it through the normal webproxy. However, webproxy cannot be reached from this environment.
As a diagnostic, I've replaced my bash_command with the following:
nc -X connect -x webproxy:8080 -v api.enterprise.wikimedia.com 443
which times out like so:
[2026-02-17, 12:05:36 UTC] {bash.py:95} INFO - nc: connect to webproxy port 8080 (tcp) failed: Connection timed out
[2026-02-17, 12:07:51 UTC] {bash.py:95} INFO - nc: connect to webproxy port 8080 (tcp) failed: Connection timed outWhen I attempt to egress to other internal resources without a proxy jump, the network seems fine:
nc -v analytics-hive.eqiad.wmnet 10000
[2026-02-17, 12:07:51 UTC] {bash.py:95} INFO - Connection to analytics-hive.eqiad.wmnet (2620:0:861:100:10:64:138:7) 10000 port [tcp/*] succeeded!