├── LICENSE ├── README.md └── ip_addresses.json /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Replicated 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Replicated External IP Addresses 2 | Replicated publishes its current IP addresses in JSON form in a public Github repository. To subscribe to changes, it’s recommended to star/follow the Github repo. 3 | 4 | Any changes to this list will be communicated with at least 30 days notice, when possible. 5 | 6 | To view the current list, please look at the [ip_addresses.json file](https://github.com/replicatedhq/ips/blob/master/ip_addresses.json). 7 | -------------------------------------------------------------------------------- /ip_addresses.json: -------------------------------------------------------------------------------- 1 | { 2 | "api.replicated.com": { 3 | "current": [ 4 | "162.159.137.43", 5 | "162.159.138.43", 6 | "2606:4700:7::a29f:892b", 7 | "2606:4700:7::a29f:8a2b" 8 | ] 9 | }, 10 | "get.replicated.com": { 11 | "current": [ 12 | "34.194.217.225", 13 | "34.200.116.158", 14 | "162.159.137.43", 15 | "162.159.138.43", 16 | "2606:4700:7::a29f:892b", 17 | "2606:4700:7::a29f:8a2b" 18 | ] 19 | }, 20 | "registry.replicated.com": { 21 | "current": [ 22 | "162.159.137.43", 23 | "162.159.138.43", 24 | "2606:4700:7::a29f:892b", 25 | "2606:4700:7::a29f:8a2b" 26 | ] 27 | }, 28 | "kurl.sh": { 29 | "current": [ 30 | "162.159.135.41", 31 | "162.159.136.41" 32 | ] 33 | }, 34 | "k8s.kurl.sh": { 35 | "current": [ 36 | "50.19.197.213", 37 | "54.236.144.143", 38 | "162.159.135.41", 39 | "162.159.136.41" 40 | ] 41 | }, 42 | "registry-data.replicated.com": { 43 | }, 44 | "proxy.replicated.com": { 45 | "current": [ 46 | "162.159.137.43", 47 | "162.159.138.43", 48 | "2606:4700:7::a29f:892b", 49 | "2606:4700:7::a29f:8a2b" 50 | ] 51 | }, 52 | "proxy-auth.replicated.com": { 53 | "current": [ 54 | "162.159.137.43", 55 | "162.159.138.43", 56 | "2606:4700:7::a29f:892b", 57 | "2606:4700:7::a29f:8a2b" 58 | ] 59 | }, 60 | "replicated.app": { 61 | "current": [ 62 | "162.159.133.41", 63 | "162.159.134.41", 64 | "2606:4700:7::a29f:8529", 65 | "2606:4700:7::a29f:8629" 66 | ] 67 | }, 68 | "general": { 69 | "future": [ 70 | "141.193.148.0/24" 71 | ] 72 | } 73 | } 74 | --------------------------------------------------------------------------------