Re: Debian installer refuses to setup IP address if gateway is no in the same subnet

2023-10-31 Thread Henning Follmann
elp.ovhcloud.com/csm/en-dedicated-servers-network-bridging?id=kb_article_view_article=KB0043731#step-4-configure-the-virtual-machines > > |ADDITIONAL_IP can be any single IP you purshased, and you see the netmask > set to| > > |255.255.255.255 There is no mention to the host

Re: Debian installer refuses to setup IP address if gateway is no in the same subnet

2023-10-31 Thread Mihamina RKTMB
On 10/31/23 16:46, Dan Ritter wrote: Mihamina RKTMB wrote: On 10/31/23 01:18, Dan Ritter wrote: Mihamina RKTMB wrote: But isn't there a way to make the Debian installer accept that the gateway is not in the subnet of the set IP address? No. [OVH docs reference omitted] You asked

Re: Debian installer refuses to setup IP address if gateway is no in the same subnet

2023-10-31 Thread Reco
Hi. On Tue, Oct 31, 2023 at 11:13:04AM +0100, Marco M. wrote: > > Maybe you need to help the installer along, and set the default route > > for the machine? Perhaps using an alternate virtual terminal, like > > FN+F5. I believe the command is `route add defa

Re: Debian installer refuses to setup IP address if gateway is no in the same subnet

2023-10-31 Thread Dan Ritter
Mihamina RKTMB wrote: > > On 10/31/23 01:18, Dan Ritter wrote: > > Mihamina RKTMB wrote: > > > But isn't there a way to make the Debian installer accept that the gateway > > > is not in the subnet of the set IP address? > > No. [OVH docs reference omi

Re: Debian installer refuses to setup IP address if gateway is no in the same subnet

2023-10-31 Thread Mihamina RKTMB
to| |255.255.255.255 There is no mention to the host (VMWare) IP address in the VM | || ||

Re: Debian installer refuses to setup IP address if gateway is no in the same subnet

2023-10-31 Thread Mihamina RKTMB
addr add $IP/32 dev eth0" - set the traffic to the gateway to go through the NIC: "ip route add $GW dev eth0" - set the default route to go via the gateway: "ip route add default via $GW" As I set the IP address to a /32, the gateway is not (never) in the subnet of

Re: Debian installer refuses to setup IP address if gateway is no in the same subnet

2023-10-31 Thread Marco M.
Am 31.10.2023 um 08:35:48 Uhr schrieb Henning Follmann: > Of course not! Some host _on_your_subnet_ must be responsible for > forwarding the packages. It is possible to define another specific direct connected route to your router and use that with source addresses that are not on the same

Re: Debian installer refuses to setup IP address if gateway is no in the same subnet

2023-10-31 Thread Henning Follmann
On Mon, Oct 30, 2023 at 06:17:18PM +0300, Mihamina RKTMB wrote: > Hi all, > > I rent a dedicated server where I installed an hypervisor and purchased > failover public IPv4 IPs routed to that server. > Of course not! Some host _on_your_subnet_ must be responsible for forwarding the packages.

Re: Debian installer refuses to setup IP address if gateway is no in the same subnet

2023-10-31 Thread Marco M.
he reason for that failure, as that case is uncommon in most networks. > Maybe you need to help the installer along, and set the default route > for the machine? Perhaps using an alternate virtual terminal, like > FN+F5. I believe the command is `route add default gw {IP-ADDRESS} > {INTER

Re: Debian installer refuses to setup IP address if gateway is no in the same subnet

2023-10-30 Thread Dan Ritter
t;ip addr add $IP/32 dev eth0" > > - set the traffic to the gateway to go through the NIC: "ip route add $GW > dev eth0" > > - set the default route to go via the gateway: "ip route add default via > $GW" > > As I set the IP address to a /32, th

Re: Debian installer refuses to setup IP address if gateway is no in the same subnet

2023-10-30 Thread Jeffrey Walton
to /32: "ip addr add $IP/32 dev eth0" > > - set the traffic to the gateway to go through the NIC: "ip route add > $GW dev eth0" > > - set the default route to go via the gateway: "ip route add default via > $GW" > > As I set the IP address to

Debian installer refuses to setup IP address if gateway is no in the same subnet

2023-10-30 Thread Mihamina RKTMB
eway to go through the NIC: "ip route add $GW dev eth0" - set the default route to go via the gateway: "ip route add default via $GW" As I set the IP address to a /32, the gateway is not (never) in the subnet of the VM. When using the Debian installer, at the networking

Re: Debian Wiki IP Address Unban Request

2023-08-22 Thread Greg Wooledge
> Who should I contact next on a private channel to get my IP unbanned? Thank > you very much. >From <https://wiki.debian.org/DebianWiki/Contact>: Access to wiki.debian.org is blocked with 403 Forbidden Please mail w...@debian.org with your IP address

Debian Wiki IP Address Unban Request

2023-08-22 Thread Oliver Wenston
Dear Debian mailing list, I purchased a vps to use as my vpn server, and found out that it was black listed from the https://wiki.debian.org/ website. I am currently using Bookworm, and would love to be able to visit the wiki with my vpn. Who should I contact next on a private channel to get my

Re: blocking 465 connections to mail server for specific IP address without using fail2ban

2019-06-22 Thread Andrew McGlashan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 The script needs more work it is not exim4-exploiters, it is for repeated failed logins. As it is now, it will treat any single failure as one to ban and that is only going to cause trouble. Although users should be logged in normally and will

Re: blocking 465 connections to mail server for specific IP address without using fail2ban

2019-06-22 Thread Andrew McGlashan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Slightly improved shell script, uses iprange once and conflates both lists together. #!/bin/bash declare -a tcp25_set tcp465_set tcp_25_465_set banned_ports_list=25,465,993,995 logwatch_file=/var/log/exim4/logwatch-email-20190622a.eml # NB

Re: blocking 465 connections to mail server for specific IP address without using fail2ban

2019-06-22 Thread Andrew McGlashan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hi, On 22/6/19 6:24 pm, john doe wrote: >> I've blacklisted quite a number of IP addresses and CIDR blocks >> from delivering email to my server with entries in the >> /etc/exim4/local_host_blacklist file. >> >> Is there any config file that I

Re: blocking 465 connections to mail server for specific IP address without using fail2ban

2019-06-22 Thread john doe
> Hi, > > I've blacklisted quite a number of IP addresses and CIDR blocks from > delivering email to my server with entries in the > /etc/exim4/local_host_blacklist file. > > Is there any config file that I can easily use to block 465 login > attempts from bad IP addresses and CIDR blocks? > > If

blocking 465 connections to mail server for specific IP address without using fail2ban

2019-06-22 Thread Andrew McGlashan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hi, I've blacklisted quite a number of IP addresses and CIDR blocks from delivering email to my server with entries in the /etc/exim4/local_host_blacklist file. Is there any config file that I can easily use to block 465 login attempts from bad IP

Re: Get the timezone from an IP address

2019-05-08 Thread Michael Stone
On Wed, May 08, 2019 at 08:34:36PM +0100, André Rodier wrote: On Wed, 2019-05-08 at 21:57 +0300, Mindaugas Celiesius wrote: Did you check this? https://packages.debian.org/stretch/geoip-bin > Hi, > > Is there any way - or Debian package - to know the timezone from an IP > address,

Re: Get the timezone from an IP address

2019-05-08 Thread André Rodier
On Wed, 2019-05-08 at 15:03 -0400, Michael Stone wrote: > On Wed, May 08, 2019 at 07:43:58PM +0100, André Rodier wrote: > > Is there any way - or Debian package - to know the timezone from an IP > > address, or at least from a country? I have successfully used the geoip >

Re: Get the timezone from an IP address

2019-05-08 Thread Darac Marjal
On 08/05/2019 19:43, André Rodier wrote: > Hi, > > Is there any way - or Debian package - to know the timezone from an IP > address, or at least from a country? I have successfully used the geoip > databases to get the country, so I could use the main city as an > approxim

Re: Get the timezone from an IP address

2019-05-08 Thread Michael Stone
On Wed, May 08, 2019 at 07:43:58PM +0100, André Rodier wrote: Is there any way - or Debian package - to know the timezone from an IP address, or at least from a country? I have successfully used the geoip databases to get the country, so I could use the main city as an approximation. I would

Re: Get the timezone from an IP address

2019-05-08 Thread Mindaugas Celiesius
Did you check this? https://packages.debian.org/stretch/geoip-bin > Hi, > > Is there any way - or Debian package - to know the timezone from an IP > address, or at least from a country? I have successfully used the geoip > databases to get the country, so I could us

Re: [OT] IP address collisions

2019-04-18 Thread Joe Pfeiffer
Dan Purgert writes: > Nicholas Geovanis wrote: >> On Thu, Apr 18, 2019 at 7:57 AM Michael Stone wrote: >> >>> >>> No, the ULA is the IPv6 equivalent of RFC1918 space--you can use it >>> internally without central registration by choosing a subnet from >>> fd00::/8. The space is so much larger

Re: [OT] IP address collisions (was: Accessing a host with variable IP addresses / connection types)

2019-04-18 Thread Nicholas Geovanis
On Thu, Apr 18, 2019, 8:29 AM Michael Stone wrote: > On Thu, Apr 18, 2019 at 08:12:04AM -0500, Nicholas Geovanis wrote: > >But isn't it irrelevant whether they pick the same prefix or not? Routers > that > >respect ULA and RFC1918 shouldn't route any traffic destined to them off > the > >logical

Re: [OT] IP address collisions

2019-04-18 Thread Pascal Hambourg
Le 18/04/2019 à 14:52, Michael Stone a écrit : On Wed, Apr 17, 2019 at 09:37:36PM +0200, Pascal Hambourg wrote: A properly generated IPv6 ULA (Unique Local Address) prefix is unlikely to have collisions. A randomly selected subnet from 10/8 is also *unlikely* to have collisions. The

Re: [OT] IP address collisions (was: Accessing a host with variable IP addresses / connection types)

2019-04-18 Thread Dan Purgert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Nicholas Geovanis wrote: > On Thu, Apr 18, 2019 at 7:57 AM Michael Stone wrote: > >> >> No, the ULA is the IPv6 equivalent of RFC1918 space--you can use it >> internally without central registration by choosing a subnet from >> fd00::/8. The space

Re: [OT] IP address collisions (was: Accessing a host with variable IP addresses / connection types)

2019-04-18 Thread Michael Stone
On Thu, Apr 18, 2019 at 08:12:04AM -0500, Nicholas Geovanis wrote: But isn't it irrelevant whether they pick the same prefix or not? Routers that respect ULA and RFC1918 shouldn't route any traffic destined to them off the logical subnet. Right? If it didn't matter, people wouldn't keep

Re: [OT] IP address collisions (was: Accessing a host with variable IP addresses / connection types)

2019-04-18 Thread Nicholas Geovanis
On Thu, Apr 18, 2019 at 7:57 AM Michael Stone wrote: > > No, the ULA is the IPv6 equivalent of RFC1918 space--you can use it > internally without central registration by choosing a subnet from > fd00::/8. The space is so much larger that it's much less likely that > two sites would pick the same

Re: [OT] IP address collisions (was: Accessing a host with variable IP addresses / connection types)

2019-04-18 Thread Michael Stone
On Wed, Apr 17, 2019 at 08:06:05PM -, Curt wrote: On 2019-04-17, Pascal Hambourg wrote: Le 17/04/2019 à 18:42, Michael Stone a écrit : On Wed, Apr 17, 2019 at 12:38:11PM -0400, Celejar wrote: On Wed, 17 Apr 2019 12:10:56 -0400 Michael Stone wrote: On Wed, Apr 17, 2019 at 11:57:43AM

Re: [OT] IP address collisions (was: Accessing a host with variable IP addresses / connection types)

2019-04-18 Thread Michael Stone
On Wed, Apr 17, 2019 at 09:37:36PM +0200, Pascal Hambourg wrote: Le 17/04/2019 à 18:42, Michael Stone a écrit : On Wed, Apr 17, 2019 at 12:38:11PM -0400, Celejar wrote: On Wed, 17 Apr 2019 12:10:56 -0400 Michael Stone wrote: On Wed, Apr 17, 2019 at 11:57:43AM -0400, Celejar wrote: I was

Re: [OT] IP address collisions (was: Accessing a host with variable IP addresses / connection types)

2019-04-17 Thread Curt
On 2019-04-17, Pascal Hambourg wrote: > Le 17/04/2019 à 18:42, Michael Stone a écrit : >> On Wed, Apr 17, 2019 at 12:38:11PM -0400, Celejar wrote: >>> On Wed, 17 Apr 2019 12:10:56 -0400 Michael Stone >>> wrote: >>> On Wed, Apr 17, 2019 at 11:57:43AM -0400, Celejar wrote: >I was rather

[OT] IP address collisions (was: Accessing a host with variable IP addresses / connection types)

2019-04-17 Thread Pascal Hambourg
Le 17/04/2019 à 18:42, Michael Stone a écrit : On Wed, Apr 17, 2019 at 12:38:11PM -0400, Celejar wrote: On Wed, 17 Apr 2019 12:10:56 -0400 Michael Stone wrote: On Wed, Apr 17, 2019 at 11:57:43AM -0400, Celejar wrote: >I was rather shocked to see that there was no definitive solution to

Re: get my ip address

2019-02-28 Thread Jonathan de Boyne Pollard
tony; I am aware that I can call ip a and parse the result. [...] Is there any other way to obtain this data, maybe from /sys? just call libc.getifaddrs() directly. * http://programmaticallyspeaking.com./getting-network-interfaces-in-python.html

Re: get my ip address

2019-02-20 Thread tony
On 20/02/2019 13:24, Dan Ritter wrote: > tony wrote: >> This thread has now drifted from my asking whether there was any way of >> interrogating the hardware to obtain the current IP6 address of host - >> apparently not > > The hardware doesn't know IP addresses. The kernel knows those. > > $

Re: get my ip address

2019-02-20 Thread Dan Ritter
tony wrote: > This thread has now drifted from my asking whether there was any way of > interrogating the hardware to obtain the current IP6 address of host - > apparently not The hardware doesn't know IP addresses. The kernel knows those. $ ip -6 a show eth0 2: eth0: mtu 1500 state UP qlen

Re: get my ip address

2019-02-20 Thread tony
On 19/02/2019 17:36, Dan Ritter wrote: > tony wrote: >> On 19/02/2019 16:10, Greg Wooledge wrote: >>> On Fri, Feb 15, 2019 at 11:11:29AM +0100, tony wrote: Debian 9. I need to read my IPv6 address into a python script. >>> >>> Why? >>> >>> may offer

Re: get my ip address

2019-02-19 Thread David Wright
On Sat 16 Feb 2019 at 11:16:23 (+0100), tony wrote: > On 15/02/2019 16:52, David Wright wrote: > > On Fri 15 Feb 2019 at 12:02:20 (+0100), Markus Schönhaber wrote: > >> Tony, 15.2.2019, 11:11:29 +0100: > >> > >>> Debian 9. I need to read my IPv6 address into a python script. > >>> > >>> I am aware

Re: get my ip address

2019-02-19 Thread David Wright
On Sun 17 Feb 2019 at 12:51:34 (+0900), John Crawley wrote: > On 16/02/2019 14.28, David Wright wrote: > > On Sat 16 Feb 2019 at 11:10:32 (+0900), John Crawley wrote: > > > On 16/02/2019 08.54, David Wright wrote: > > > > On Fri 15 Feb 2019 at 22:04:42 (+), Darac Marjal wrote: > > > > > If

Re: get my ip address

2019-02-19 Thread Greg Wooledge
ks.d directory and let it use the new_ip_address environment variable. The example is right there on the wiki page. Just replace /usr/local/sbin/dync with your python program (assuming it takes the IP address on the argument list). Oh... wait, you said IPv6 in the original message, right? Ugh.

Re: get my ip address

2019-02-19 Thread tony
On 19/02/2019 17:36, Dan Ritter wrote: > tony wrote: >> On 19/02/2019 16:10, Greg Wooledge wrote: >>> On Fri, Feb 15, 2019 at 11:11:29AM +0100, tony wrote: Debian 9. I need to read my IPv6 address into a python script. >>> >>> Why? >>> >>> may offer

Re: get my ip address

2019-02-19 Thread Dan Ritter
tony wrote: > On 19/02/2019 16:10, Greg Wooledge wrote: > > On Fri, Feb 15, 2019 at 11:11:29AM +0100, tony wrote: > >> Debian 9. I need to read my IPv6 address into a python script. > > > > Why? > > > > may offer some insight. > > > > Well, I'm sure you

Re: get my ip address

2019-02-19 Thread tony
On 19/02/2019 16:10, Greg Wooledge wrote: > On Fri, Feb 15, 2019 at 11:11:29AM +0100, tony wrote: >> Debian 9. I need to read my IPv6 address into a python script. > > Why? > > may offer some insight. > Well, I'm sure you don't really want to know, and I

Re: get my ip address

2019-02-19 Thread Greg Wooledge
On Fri, Feb 15, 2019 at 11:11:29AM +0100, tony wrote: > Debian 9. I need to read my IPv6 address into a python script. Why? may offer some insight.

Re: get my ip address

2019-02-16 Thread John Crawley
On 16/02/2019 14.28, David Wright wrote: On Sat 16 Feb 2019 at 11:10:32 (+0900), John Crawley wrote: On 16/02/2019 08.54, David Wright wrote: On Fri 15 Feb 2019 at 22:04:42 (+), Darac Marjal wrote: If you're going to recommend parsing `ip`, the -j option may be more amenable to scripting.

Re: get my ip address

2019-02-16 Thread Darac Marjal
jq to filter it to different JSON, and then > parse it in a shell, rather than just parsing something as simple as > the oneline format using the tools that every system has installed > (like grep, sed). Because JSON gives a standard way to markup data. Grep and sed are great, no quibbles th

Re: get my ip address

2019-02-16 Thread tony
On 15/02/2019 16:52, David Wright wrote: > On Fri 15 Feb 2019 at 12:02:20 (+0100), Markus Schönhaber wrote: >> Tony, 15.2.2019, 11:11:29 +0100: >> >>> Debian 9. I need to read my IPv6 address into a python script. >>> >>> I am aware that I can call ip a and parse the result. The parsing, >>>

Re: get my ip address

2019-02-15 Thread David Wright
On Sat 16 Feb 2019 at 11:10:32 (+0900), John Crawley wrote: > On 16/02/2019 08.54, David Wright wrote: > > On Fri 15 Feb 2019 at 22:04:42 (+), Darac Marjal wrote: > > > If you're going to recommend parsing `ip`, the -j option may be more > > > amenable to scripting. (JSON output) > > > > > >

Re: get my ip address

2019-02-15 Thread John Crawley
On 16/02/2019 08.54, David Wright wrote: On Fri 15 Feb 2019 at 22:04:42 (+), Darac Marjal wrote: If you're going to recommend parsing `ip`, the -j option may be more amenable to scripting. (JSON output) On 15/02/2019 15:52, David Wright wrote: On Fri 15 Feb 2019 at 12:02:20 (+0100),

Re: get my ip address

2019-02-15 Thread David Wright
On Fri 15 Feb 2019 at 22:04:42 (+), Darac Marjal wrote: > If you're going to recommend parsing `ip`, the -j option may be more > amenable to scripting. (JSON output) > > On 15/02/2019 15:52, David Wright wrote: > > On Fri 15 Feb 2019 at 12:02:20 (+0100), Markus Schönhaber wrote: > >> Tony,

Re: get my ip address

2019-02-15 Thread Darac Marjal
If you're going to recommend parsing `ip`, the -j option may be more amenable to scripting. (JSON output) On 15/02/2019 15:52, David Wright wrote: > On Fri 15 Feb 2019 at 12:02:20 (+0100), Markus Schönhaber wrote: >> Tony, 15.2.2019, 11:11:29 +0100: >> >>> Debian 9. I need to read my IPv6 address

Re: get my ip address

2019-02-15 Thread David Wright
On Fri 15 Feb 2019 at 12:02:20 (+0100), Markus Schönhaber wrote: > Tony, 15.2.2019, 11:11:29 +0100: > > > Debian 9. I need to read my IPv6 address into a python script. > > > > I am aware that I can call ip a and parse the result. The parsing, > > whilst quite achievable, is slightly tricky, but

Re: get my ip address

2019-02-15 Thread Markus Schönhaber
Tony, 15.2.2019, 11:11:29 +0100: > Debian 9. I need to read my IPv6 address into a python script. > > I am aware that I can call ip a and parse the result. The parsing, > whilst quite achievable, is slightly tricky, but I can manage the RE, so > that's not my question. > > Is there any other

Re: get my ip address

2019-02-15 Thread tomas
On Fri, Feb 15, 2019 at 11:11:29AM +0100, tony wrote: > Hi all, > > Debian 9. I need to read my IPv6 address into a python script. You don't have "an IP address". Your host has, and it has zero or more (potentially many) IP addresses. With IPV6, you'll almost certainly end up

get my ip address

2019-02-15 Thread tony
Hi all, Debian 9. I need to read my IPv6 address into a python script. I am aware that I can call ip a and parse the result. The parsing, whilst quite achievable, is slightly tricky, but I can manage the RE, so that's not my question. Is there any other way to obtain this data, maybe from

Re: Outgoing email with exim, was Re: Strange LAN IP Address.

2018-07-04 Thread mick crane
On 2018-07-04 04:40, Mike McClain wrote: On Tue, Jul 03, 2018 at 05:42:15PM -0500, David Wright wrote: On Tue 03 Jul 2018 at 08:52:22 (-0700), Mike McClain wrote: > On Mon, Jul 02, 2018 at 03:17:27PM -0400, Stephen P. Molnar wrote: > > Should anyone reading this know hjow to get exim4 to

Re: Outgoing email with exim, was Re: Strange LAN IP Address.

2018-07-03 Thread Mike McClain
On Tue, Jul 03, 2018 at 05:42:15PM -0500, David Wright wrote: > On Tue 03 Jul 2018 at 08:52:22 (-0700), Mike McClain wrote: > > On Mon, Jul 02, 2018 at 03:17:27PM -0400, Stephen P. Molnar wrote: > > > > Should anyone reading this know hjow to get exim4 to connect to > > outbound.att.net I'd

Re: Strange LAN IP Address.

2018-07-03 Thread David Wright
On Tue 03 Jul 2018 at 19:59:18 (+0200), Pascal Hambourg wrote: > Le 03/07/2018 à 02:42, David Wright a écrit : > >On Mon 02 Jul 2018 at 21:58:15 (+0200), john doe wrote: > > > >>It could be that the ISP router went into "bridge mode" (router > >>function was disabled). > > > >Which is rather

Outgoing email with exim, was Re: Strange LAN IP Address.

2018-07-03 Thread David Wright
et with allowed IP range as 192.168.1.64 through 192.168.1.253, > > which was set by the T installer when we switched to a fiber optic > > network. > > > > Further examination of the modem settings showed IP Passthrough > > status as on (Public IP Address), which was,

Re: Strange LAN IP Address.

2018-07-03 Thread Pascal Hambourg
Le 03/07/2018 à 02:42, David Wright a écrit : On Mon 02 Jul 2018 at 21:58:15 (+0200), john doe wrote: It could be that the ISP router went into "bridge mode" (router function was disabled). Which is rather worrying as you are exposed to the Internet without any security. Why "without any

Re: Strange LAN IP Address.

2018-07-03 Thread Curt
On 2018-07-03, Mike McClain wrote: > > Should anyone reading this know hjow to get exim4 to connect to > outbound.att.net I'd love to hear about it. > There's the (perhaps outdated) wiki: https://wiki.debian.org/ATTUverseExim4 Maybe you are already aware of the wiki.

Re: Strange LAN IP Address.

2018-07-03 Thread Mike McClain
set by the T installer when we switched to a fiber optic > network. > > Further examination of the modem settings showed IP Passthrough > status as on (Public IP Address), which was, in fact the IP. ATT tech support demonstrated to me that they can change the settings remotely. If

Re: Strange LAN IP Address.

2018-07-03 Thread Joe
On Tue, 03 Jul 2018 10:53:27 +0100 Jeremy Nicoll wrote: > On Tue, 3 Jul 2018, at 07:19, john doe wrote: > > > You are correct in the case of an ADSL "router". > > > > Sadly, in the case of my European ISP I'm stuck with what they give > > me! I must say that I've never investigated how I could

Re: Strange LAN IP Address.

2018-07-03 Thread Jeremy Nicoll
On Tue, 3 Jul 2018, at 07:19, john doe wrote: > You are correct in the case of an ADSL "router". > > Sadly, in the case of my European ISP I'm stuck with what they give me! > I must say that I've never investigated how I could use my own cable > modem and understand the kind of restriction

Re: Strange LAN IP Address.

2018-07-03 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, Jul 03, 2018 at 08:19:44AM +0200, john doe wrote: [...] > You are correct in the case of an ADSL "router". > > Sadly, in the case of my European ISP I'm stuck with what they give me! There are people working on exactly that. One example:

Re: Strange LAN IP Address.

2018-07-03 Thread john doe
!!?  The LAN modem employs DCHP set with allowed IP range as 192.168.1.64 through 192.168.1.253, which was set by the T installer when we switched to a fiber optic network. Further examination of the modem settings showed IP Passthrough status as on (Public IP Address), which was, in fact the IP

Re: Strange LAN IP Address.

2018-07-02 Thread David Christensen
, which was set by the T installer when we switched to a fiber optic network. Further examination of the modem settings showed IP Passthrough status as on (Public IP Address), which was, in fact the IP. I spent 40 minutes, on hold for 28 of those minutes, with an AT UVVerse technical () person

Re: Strange LAN IP Address.

2018-07-02 Thread David Wright
Linux platform it showed the unet > >connection to be 162.237.98.238!!?  The LAN modem employs DCHP > >set with allowed IP range as 192.168.1.64 through 192.168.1.253, > >which was set by the T installer when we switched to a fiber > >optic network. > > > >F

Re: Strange LAN IP Address.

2018-07-02 Thread Gene Heskett
oys DCHP set > with allowed IP range as 192.168.1.64 through 192.168.1.253, which was > set by the T installer when we switched to a fiber optic network. > > Further examination of the modem settings showed IP Passthrough status > as on (Public IP Address), which was, in fact the IP. >

Re: Strange LAN IP Address.

2018-07-02 Thread john doe
192.168.1.253, which was set by the T installer when we switched to a fiber optic network. Further examination of the modem settings showed IP Passthrough status as on (Public IP Address), which was, in fact the IP. I spent 40 minutes, on hold for 28 of those minutes, with an AT UVVerse technical

Strange LAN IP Address.

2018-07-02 Thread Stephen P. Molnar
switched to a fiber optic network. Further examination of the modem settings showed IP Passthrough status as on (Public IP Address), which was, in fact the IP. I spent 40 minutes, on hold for 28 of those minutes, with an AT UVVerse technical () person without hearing any reasons why

Re: Get the external IP address from a Linux box

2018-06-02 Thread David Wright
following the "weak host" model (like > >Linux does) can advertise any local address on any interface. It > >can be tested with arping. However I am failing to imagine any > >plausible scenario which could lead a host on the internal LAN to > >have the router's exte

Re: Get the external IP address from a Linux box

2018-06-02 Thread David Wright
écrit : > >> >> On 2018-05-24, André Rodier wrote: > >> >>> > >> >>> I am looking for a native package on Debian, that can give me the > >> >>> external IP address of the machine. > >> >> > >>

Re: Get the external IP address from a Linux box

2018-05-30 Thread Joel Rees
ing a router of some kind, your >> > > public >> > > IP address will be that of the router WAN port (cable, ADSL, etc.) >> > > and >> > > there will be a method of determining that by connecting to the >> > > router >> > &

Re: Get the external IP address from a Linux box

2018-05-29 Thread Greg Wooledge
On Fri, May 25, 2018 at 09:13:34PM -0400, Kenneth Parker wrote: > Thank you most kindly, Mike! Is there anything from this, that can help > the original Poster? Sign onto yourself, from a VPN or some such? It's conceptually the same as getting a web service to tell you what IP address i

Re: Get the external IP address from a Linux box

2018-05-29 Thread Pascal Hambourg
plausible scenario which could lead a host on the internal LAN to have the router's external IP address in its ARP cache. It means that either : - the host sends an ARP query for the router's external IP address I guess this could happen if the host has a direct default route (no gateway) and the r

Re: Get the external IP address from a Linux box

2018-05-29 Thread Alan Greenberger
gt; >>> I am looking for a native package on Debian, that can give me the >> >>> external IP address of the machine. >> >> >> >> Assuming you are looking for the public internet address of your router, >> >> you could try: >> >

Re: Get the external IP address from a Linux box

2018-05-28 Thread Pascal Hambourg
could lead a host on the internal LAN to have the router's external IP address in its ARP cache. It means that either : - the host sends an ARP query for the router's external IP address - the router sends an ARP query to the host from its external IP address

Re: Get the external IP address from a Linux box

2018-05-28 Thread David Wright
On Mon 28 May 2018 at 07:54:49 (-0400), Alan Greenberger wrote: > On 2018-05-26, Pascal Hambourg wrote: > > Le 25/05/2018 à 02:17, Alan Greenberger a écrit : > >> On 2018-05-24, André Rodier wrote: > >>> > >>> I am looking for a native package on Debi

Re: Get the external IP address from a Linux box

2018-05-28 Thread Alan Greenberger
On 2018-05-26, Pascal Hambourg <pas...@plouf.fr.eu.org> wrote: > Le 25/05/2018 à 02:17, Alan Greenberger a écrit : >> On 2018-05-24, André Rodier <an...@rodier.me> wrote: >>> >>> I am looking for a native package on Debian, that can give me the

Re: Get the external IP address from a Linux box

2018-05-27 Thread Andrew McGlashan
Hi, On 27/05/18 22:14, André Rodier wrote: >> My script also does the Google DNS lookup. > I have four IP addresses, and Goodle DNS returns the first one, > although I query from the second one. Are you sure that isn't a problem at your end? How your firewall is identifying and routing the

Get the external IP address from a Linux box

2018-05-27 Thread Andrew McGlashan
e DNS lookup. > - Count the IP addresses returned, and order them by the most probable > result. > - Return the external IP address only if above a certain level of > confidence (actually 100%). > - The list of IP addresses is in a separate configuration file. I've kept the option

Re: Get the external IP address from a Linux box

2018-05-26 Thread Pascal Hambourg
Le 25/05/2018 à 02:17, Alan Greenberger a écrit : On 2018-05-24, André Rodier <an...@rodier.me> wrote: I am looking for a native package on Debian, that can give me the external IP address of the machine. Assuming you are looking for the public internet address of your router, you cou

Re: Get the external IP address from a Linux box

2018-05-26 Thread Richard Hector
On 24/05/18 18:59, Joe wrote: > To begin with, try: > > ip addr show > > and look for the block of information with a label beginning 'eth' or > 'en'. That will contain the Ethernet adaptor IP address. From your > question, I assume your computer contains only one. >

Re: Get the external IP address from a Linux box

2018-05-25 Thread Kenneth Parker
0, Kenneth Parker wrote: > >> I haven't reviewed the Source Code for the "who" command, to see how it >> gets >> that IP Address. Anybody? >> > > It gets it from your login program or pam writing to /var/run/utmp > > Mike Stone >

Re: Get the external IP address from a Linux box

2018-05-25 Thread Michael Stone
On Fri, May 25, 2018 at 09:03:15PM -0400, Kenneth Parker wrote: I haven't reviewed the Source Code for the "who" command, to see how it gets that IP Address.  Anybody? It gets it from your login program or pam writing to /var/run/utmp Mike Stone

Re: Get the external IP address from a Linux box

2018-05-25 Thread Kenneth Parker
I have Shell Access (as Admin) to a "Cloud" System (Ubuntu 16.04 Server, but due to be Reinstalled as Debian 9.4. Go Debian!) When I ssh in, to my "Regular Account", I type "who", and get the External IP Address for my Spectrum Broadband access. What

Re: Get the external IP address from a Linux box

2018-05-25 Thread Dan Purgert
Abdullah Ramazanoğlu wrote: > On Thu, 24 May 2018 11:04:51 - (UTC) Dan Purgert said: > >> Ew, CGNAT. :( >> >> If you have a particularly poor ISP, they may even NAT you somewhere >> insane outside of RFC1918 (10.0.0.0 - 10.255.255.255 / 172.16.0.0 - >> 172.31.255.255 / 192.168.0.0 -

Re: Get the external IP address from a Linux box

2018-05-24 Thread Alan Greenberger
On 2018-05-24, André Rodier <an...@rodier.me> wrote: > Hello, > > I am looking for a native package on Debian, that can give me the > external IP address of the machine. > Assuming you are looking for the public internet address of your router, you could try: /usr/sbin/arp

Re: Get the external IP address from a Linux box

2018-05-24 Thread Miles Fidelman
On 5/24/18 4:22 PM, Erwan David wrote: Le 05/24/18 à 22:17, Stefan Monnier a écrit : Alberto Luaces <alua...@udc.es> writes: Joe writes: On the assumption that you are using a router of some kind, your public IP address will be that of the router WAN port (cable, ADS

Get the external IP address from a Linux box

2018-05-24 Thread Erwan David
Le 05/24/18 à 22:17, Stefan Monnier a écrit : > Alberto Luaces <alua...@udc.es> writes: > >> Joe writes: >> >>> On the assumption that you are using a router of some kind, your public >>> IP address will be that of the router WAN port (cable,

Re: Get the external IP address from a Linux box

2018-05-24 Thread Stefan Monnier
Alberto Luaces <alua...@udc.es> writes: > Joe writes: > >> On the assumption that you are using a router of some kind, your public >> IP address will be that of the router WAN port (cable, ADSL, etc.) and >> there will be a method of determining th

Re: Get the external IP address from a Linux box

2018-05-24 Thread Dan Purgert
Greg Wooledge wrote: > On Thu, May 24, 2018 at 07:22:56AM +0100, André Rodier wrote: >> I am looking for a native package on Debian, that can give me the >> external IP address of the machine. > > wget --quiet -O- http://wooledge.org/myip.cgi > > Or your favorite alte

Re: Get the external IP address from a Linux box

2018-05-24 Thread Greg Wooledge
On Thu, May 24, 2018 at 07:22:56AM +0100, André Rodier wrote: > I am looking for a native package on Debian, that can give me the > external IP address of the machine. wget --quiet -O- http://wooledge.org/myip.cgi Or your favorite alternative "tell me what my IP address is" web

Re: Get the external IP address from a Linux box

2018-05-24 Thread Peter Ludikovsky
curl https://icanhazip.com Regards, /peter On 2018-05-24 08:22, André Rodier wrote: Hello, I am looking for a native package on Debian, that can give me the external IP address of the machine. So far, I used internet sites, but I am sure there is a package that do that properly, especially

Re: Get the external IP address from a Linux box

2018-05-24 Thread Dan Purgert
Abdullah Ramazanoğlu wrote: > On Thu, 24 May 2018 07:22:56 +0100 André Rodier said: > >> I am looking for a native package on Debian, that can give me the >> external IP address of the machine. >> >> So far, I used internet sites, but I am sure there is a pa

Re: Get the external IP address from a Linux box

2018-05-24 Thread Joe
On Thu, 24 May 2018 08:13:54 +0100 André Rodier <an...@rodier.me> wrote: > On Thu, 2018-05-24 at 09:07 +0200, Alberto Luaces wrote: > > Joe writes: > > > > > On the assumption that you are using a router of some kind, your > > > public > > >

Re: Get the external IP address from a Linux box

2018-05-24 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, May 24, 2018 at 10:37:44AM +0300, Abdullah Ramazanoğlu wrote: [...] > Unless you have a dedicated IP address, then even if you directly connect to > your ISP (no routers, no NAT) you will likely get a local pool address and

Re: Get the external IP address from a Linux box

2018-05-24 Thread Abdullah Ramazanoğlu
On Thu, 24 May 2018 07:22:56 +0100 André Rodier said: > I am looking for a native package on Debian, that can give me the > external IP address of the machine. > > So far, I used internet sites, but I am sure there is a package that do > that properly, especially if one site

  1   2   3   4   5   6   7   8   9   10   >