Hi, I'm reaching out to determine if an IP has been shadowbanned. I have two machines, each at different physical locations, each with different Internet connections. One has no issues at all, while the other receives 429 responses for 100% of its requests. I noticed this probably two weeks ago, and the situation has persisted.
Machine A:
$ date --utc && git clone --shallow-since=1d https://codeberg.org/guix/guix.git
Fri Sep 12 12:05:14 AM UTC 2025
Cloning into 'guix'...
remote: Enumerating objects: 5795, done.
remote: Counting objects: 100% (5795/5795), done.
remote: Compressing objects: 100% (4006/4006), done.
remote: Total 5795 (delta 2504), reused 4172 (delta 1766), pack-reused 0 (from 0)
Receiving objects: 100% (5795/5795), 27.32 MiB | 5.95 MiB/s, done.
Resolving deltas: 100% (2504/2504), done.
Updating files: 100% (3225/3225), done.
Machine B:
$ date --utc && git clone --shallow-since=1d https://codeberg.org/guix/guix.git
Fri Sep 12 12:05:18 AM UTC 2025
Cloning into 'guix'...
fatal: unable to access 'https://codeberg.org/guix/guix.git/': The requested URL returned error: 429
The only difference is the source network the traffic originates from.
How can I determine if I'm under an IP ban, and if so, the reason for it? How can I appeal it?
### Comment
Hi, I'm reaching out to determine if an IP has been shadowbanned. I have two machines, each at different physical locations, each with different Internet connections. One has no issues at all, while the other receives 429 responses for 100% of its requests. I noticed this probably two weeks ago, and the situation has persisted.
Machine A:
```
$ date --utc && git clone --shallow-since=1d https://codeberg.org/guix/guix.git
Fri Sep 12 12:05:14 AM UTC 2025
Cloning into 'guix'...
remote: Enumerating objects: 5795, done.
remote: Counting objects: 100% (5795/5795), done.
remote: Compressing objects: 100% (4006/4006), done.
remote: Total 5795 (delta 2504), reused 4172 (delta 1766), pack-reused 0 (from 0)
Receiving objects: 100% (5795/5795), 27.32 MiB | 5.95 MiB/s, done.
Resolving deltas: 100% (2504/2504), done.
Updating files: 100% (3225/3225), done.
```
Machine B:
```
$ date --utc && git clone --shallow-since=1d https://codeberg.org/guix/guix.git
Fri Sep 12 12:05:18 AM UTC 2025
Cloning into 'guix'...
fatal: unable to access 'https://codeberg.org/guix/guix.git/': The requested URL returned error: 429
```
The only difference is the source network the traffic originates from.
How can I determine if I'm under an IP ban, and if so, the reason for it? How can I appeal it?