Page 1 of 1
FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-30 03:43
by Proteus
Hallo,
da ich nun fast alle meine Server auf FreeBSD 10 umgestellt habe, ich habe hier ein System von NGZ-Server, das partout nicht will sich mehrere IP als Aliase betreiben lassen. Ich bekomme eine einzige IP aber nur in Verbindung mit DHCP eingebunden. Sobald ich auf Statische IP umstelle, ist der Server nicht mehr über Putty erreichbar. Stell ich es wieder auf "DHCP" um funktioniert es. Will ich mehrere IPs einstellen funktioniert es wieder nicht. Ich hoffe hier auf einen Lösungsansatz, denn der Provider hat keine Ahnung von FreeBSD und sagt das er seine Supporter nicht extra deswegen auf einen Unix Lehrgang schicken will.
rc.conf
Code: Select all
##############################################################
### IPv4 Network configuration sub-section #################
##############################################################
hostname="DM0202.static.rdns-uclo.net"
ifconfig_em0="DHCP"
##############################################################
### IPv4 und IPv6 Network ##################################
##############################################################
ifconfig_em0_alias0="inet 89.163.163.203 netmask 255.255.255.0"
ifconfig em0
Code: Select all
em0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=4219b<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,TSO4,WOL_MAGIC,VLAN_HWTSO>
ether d4:3d:7e:b7:14:61
inet 89.163.163.203 netmask 0xffffff00 broadcast 89.163.163.255
inet 89.163.163.202 netmask 0xfffffff8 broadcast 89.163.163.207
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
media: Ethernet autoselect (100baseTX <full-duplex>)
status: active
netstat -r
Code: Select all
Routing tables
Internet:
Destination Gateway Flags Refs Use Netif Expire
default 89.163.163.201.sta UGS 0 155 em0
89.163.163.0 link#1 U 0 0 em0
89.163.163.200/29 link#1 U 0 0 em0
DM0202 link#1 UHS 0 0 lo0
DM0203 link#1 UHS 0 0 lo0
localhost link#3 UH 0 0 lo0
Internet6:
Destination Gateway Flags Netif Expire
:: localhost UGRS lo0
localhost link#3 UH lo0
::ffff:0.0.0.0 localhost UGRS lo0
fe80:: localhost UGRS lo0
fe80::%lo0 link#3 U lo0
fe80::1%lo0 link#3 UHS lo0
ff01::%lo0 localhost U lo0
ff02:: localhost UGRS lo0
ff02::%lo0 localhost U lo0
Reverse-DNS-Eintrag:
Code: Select all
89.163.163.202 DM0202.static.rdns-uclo.net
89.163.163.203 DM0202.static.rdns-uclo.net
89.163.163.204 DM0204.static.rdns-uclo.net
89.163.163.205 DM0205.static.rdns-uclo.net
Re: FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-30 09:18
by daemotron
Du verwendest eine falsche Netmask. Laut Routing Tabelle ist das Subnetz korrekt 89.163.163.200/29 - die Netzmaske müsste also 255.255.255.248 (oder 0xfffffff8 in Hex-Notation) lauten.
Re: FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-30 10:56
by Joe User
Die Konfigurationssyntax für multiple IPs (Alias) auf einem Interface hat sich geändert, die alte Version wird irgendwann entsorgt. So sieht die neue Syntax zum Beispiel auf meinem Hetzner aus:
Code: Select all
[root@devgate:~] # cat /etc/rc.conf
##############################################################
### Important initial Boot-time options ####################
##############################################################
#kern_securelevel_enable="YES"
#kern_securelevel="1"
fsck_y_enable="YES"
dumpdev="AUTO"
##############################################################
### Network configuration sub-section ######################
##############################################################
hostname="devgate.rootservice.org"
defaultrouter="144.76.199.1"
ipv6_defaultrouter="fe80::1%re0"
ifconfig_re0="inet 144.76.199.8 netmask 255.255.255.224"
ifconfig_re0_ipv6="inet6 2a01:4f8:200:8007::1 prefixlen 64"
ifconfig_re0_aliases="\
inet 144.76.199.25 netmask 255.255.255.224 \
inet 144.76.199.26 netmask 255.255.255.224 \
inet 144.76.231.78 netmask 255.255.255.248 \
inet6 2a01:4f8:200:8007::2 prefixlen 64 \
inet6 2a01:4f8:200:8007::3 prefixlen 64 \
inet6 2a01:4f8:200:8007::4 prefixlen 64"
pf_enable="YES"
pf_rules="/etc/pf.conf"
pflog_enable="YES"
pflog_logfile="/var/log/pflog"
pflog_flags="$pflog_flags -s 16384"
##############################################################
### System console options #################################
##############################################################
keymap="german.iso.kbd"
font8x16="iso-8x16.fnt"
font8x14="iso-8x14.fnt"
font8x8="iso-8x8.fnt"
##############################################################
### Mail Transfer Agent (MTA) options ######################
##############################################################
sendmail_enable="NO"
sendmail_cert_create="NO"
sendmail_submit_enable="NO"
sendmail_outbound_enable="NO"
sendmail_msp_queue_enable="NO"
##############################################################
### Miscellaneous administrative options ###################
##############################################################
syslogd_flags="-ss"
clear_tmp_enable="YES"
cron_flags="$cron_flags -j 0 -J 0"
##############################################################
### Jail Configuration #######################################
##############################################################
##############################################################
### System services options ################################
##############################################################
#local_unbound_enable="YES"
sshd_enable="YES"
smartd_enable="YES"
mysql_enable="YES"
mysql_dbdir="/data/db/mysql"
#postgresql_enable="YES"
#postgresql_data="/data/db/pgsql/data"
#postgresql_flags="-w -s -m fast"
#postgresql_initdb_flags="--locale=en_US.UTF-8 --encoding=UTF-8 --lc-collate=C --data-checksums --auth=md5 --username=postgres --pwprompt"
dovecot_enable="YES"
postfix_enable="YES"
apache24_enable="YES"
apache24_http_accept_enable="YES"
[root@devgate:~] # ifconfig re0
re0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8209b<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,WOL_MAGIC,LINKSTATE>
ether d4:3d:7e:ec:ea:1e
inet 144.76.199.8 netmask 0xffffffe0 broadcast 144.76.199.31
inet6 fe80::d63d:7eff:feec:ea1e%re0 prefixlen 64 scopeid 0x1
inet6 2a01:4f8:200:8007::1 prefixlen 64
inet 144.76.199.25 netmask 0xffffffe0 broadcast 144.76.199.31
inet 144.76.199.26 netmask 0xffffffe0 broadcast 144.76.199.31
inet 144.76.231.78 netmask 0xfffffff8 broadcast 144.76.231.79
inet6 2a01:4f8:200:8007::2 prefixlen 64
inet6 2a01:4f8:200:8007::3 prefixlen 64
inet6 2a01:4f8:200:8007::4 prefixlen 64
nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
media: Ethernet autoselect (1000baseT <full-duplex>)
status: active
[root@devgate:~] # netstat -nr
Routing tables
Internet:
Destination Gateway Flags Refs Use Netif Expire
default 144.76.199.1 UGS 0 19550 re0
127.0.0.1 link#4 UH 0 0 lo0
144.76.199.0/27 link#1 U 0 0 re0
144.76.199.8 link#1 UHS 0 853 lo0
144.76.199.25 link#1 UHS 0 62 lo0
144.76.199.26 link#1 UHS 0 26 lo0
144.76.231.72/29 link#1 U 0 0 re0
144.76.231.78 link#1 UHS 0 58 lo0
Internet6:
Destination Gateway Flags Netif Expire
::/96 ::1 UGRS lo0 =>
default fe80::1%re0 UGS re0
::1 link#4 UH lo0
::ffff:0.0.0.0/96 ::1 UGRS lo0
2a01:4f8:200:8007::/64 link#1 U re0
2a01:4f8:200:8007::1 link#1 UHS lo0
2a01:4f8:200:8007::2 link#1 UHS lo0
2a01:4f8:200:8007::3 link#1 UHS lo0
2a01:4f8:200:8007::4 link#1 UHS lo0
fe80::/10 ::1 UGRS lo0
fe80::%re0/64 link#1 U re0
fe80::d63d:7eff:feec:ea1e%re0 link#1 UHS lo0
fe80::%lo0/64 link#4 U lo0
fe80::1%lo0 link#4 UHS lo0
ff01::%re0/32 fe80::d63d:7eff:feec:ea1e%re0 U re0
ff01::%lo0/32 ::1 U lo0
ff02::/16 ::1 UGRS lo0
ff02::%re0/32 fe80::d63d:7eff:feec:ea1e%re0 U re0
ff02::%lo0/32 ::1 U lo0
[root@devgate:~] #
Re: FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-30 11:23
by Joe User
Deine Routingtabelle sieht fast nach einer Hostroute aus, daher würde ich mal diese Netzwerkkonfiguration (rc.conf) vorschlagen:
Code: Select all
static_routes="gateway4 default4"
route_gateway4="-host -inet 89.163.163.201 -interface em0"
route_default4="default 89.163.163.201"
ifconfig_em0="inet 89.163.163.202 netmask 255.255.255.248"
ifconfig_em0_aliases="\
inet 89.163.163.203 netmask 255.255.255.248 \
inet 89.163.163.204 netmask 255.255.255.248 \
inet 89.163.163.205 netmask 255.255.255.248 "
Alles Andere an Netzwerkkonfiguration erstmal rauswerfen/kommentieren und einen Reboot durchführen.
Re: FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-30 13:42
by Proteus
daemotron wrote:Du verwendest eine falsche Netmask. Laut Routing Tabelle ist das Subnetz korrekt 89.163.163.200/29 - die Netzmaske müsste also 255.255.255.248 (oder 0xfffffff8 in Hex-Notation) lauten.
Das habe ich mir auch schon gedacht doch beides funktioniert. Also ich kann 255.255.255.0 oder 248 benutzen. IP 203 kann ich einbinden nur 204, 205 wollen nicht funktionieren egal welche Konstellation ich wähle.
Re: FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-30 13:54
by Proteus
Joe User wrote:Deine Routingtabelle sieht fast nach einer Hostroute aus, daher würde ich mal diese Netzwerkkonfiguration (rc.conf) vorschlagen:
Code: Select all
static_routes="gateway4 default4"
route_gateway4="-host -inet 89.163.163.201 -interface em0"
route_default4="default 89.163.163.201"
ifconfig_em0="inet 89.163.163.202 netmask 255.255.255.248"
ifconfig_em0_aliases="\
inet 89.163.163.203 netmask 255.255.255.248 \
inet 89.163.163.204 netmask 255.255.255.248 \
inet 89.163.163.205 netmask 255.255.255.248 "
Alles Andere an Netzwerkkonfiguration erstmal rauswerfen/kommentieren und einen Reboot durchführen.
Ich habe deinen Config Vorschlag eingebaut, und wieder das selbe Problem. 203 funktioniert und die beiden anderen 204 und 205 wiederum nicht.
Code: Select all
ifconfig em0
em0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=4219b<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,TSO4,WOL_MAGIC,VLAN_HWTSO>
ether d4:3d:7e:b7:14:61
inet 89.163.163.202 netmask 0xfffffff8 broadcast 89.163.163.207
inet6 fe80::d63d:7eff:feb7:1461%em0 prefixlen 64 scopeid 0x1
inet 89.163.163.203 netmask 0xfffffff8 broadcast 89.163.163.207
inet 89.163.163.204 netmask 0xfffffff8 broadcast 89.163.163.207
inet 89.163.163.205 netmask 0xfffffff8 broadcast 89.163.163.207
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
media: Ethernet autoselect (100baseTX <full-duplex>)
status: active
Code: Select all
netstat -r
Routing tables
Internet:
Destination Gateway Flags Refs Use Netif Expire
default 89.163.163.201.sta UGS 0 278 em0
89.163.163.200/29 link#1 U 0 0 em0
89.163.163.201.sta d4:3d:7e:b7:14:61 UHS 0 0 em0
DM0202 link#1 UHS 0 0 lo0
DM0203 link#1 UHS 0 0 lo0
DM0204 link#1 UHS 0 0 lo0
DM0205 link#1 UHS 0 0 lo0
localhost link#3 UH 0 0 lo0
Internet6:
Destination Gateway Flags Netif Expire
:: localhost UGRS lo0
localhost link#3 UH lo0
::ffff:0.0.0.0 localhost UGRS lo0
fe80:: localhost UGRS lo0
fe80::%em0 link#1 U em0
fe80::d63d:7eff:fe link#1 UHS lo0
fe80::%lo0 link#3 U lo0
fe80::1%lo0 link#3 UHS lo0
ff01::%em0 fe80::d63d:7eff:fe U em0
ff01::%lo0 localhost U lo0
ff02:: localhost UGRS lo0
ff02::%em0 fe80::d63d:7eff:fe U em0
ff02::%lo0 localhost U lo0
Re: FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-30 18:06
by Joe User
Bitte mal aus dem Rescuesystem posten:
Code: Select all
ip route get 0.0.0.0
ifconfig -u
netstat -rn
Re: FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-30 19:07
by Proteus
Habe im Rescue leider kein FreeBSD und kann daher nur mit Linux die Netsettings anzeigen lassen.
Code: Select all
ip route get 0.0.0.0
local 127.0.0.1 dev lo src 127.0.0.1
cache <local>
Code: Select all
eth0 Link encap:Ethernet HWaddr d4:3d:7e:b7:14:61
inet addr:89.163.163.202 Bcast:89.163.163.207 Mask:255.255.255.248
inet6 addr: fe80::d63d:7eff:feb7:1461/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:11604 errors:0 dropped:0 overruns:0 frame:0
TX packets:6883 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:15437692 (14.7 MiB) TX bytes:724342 (707.3 KiB)
Interrupt:20 Memory:f4400000-f4420000
eth1 Link encap:Ethernet HWaddr 00:1b:21:04:9a:15
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:18 Memory:f4140000-f4160000
Code: Select all
Destination Gateway Genmask Flags MSS Window irtt Iface
0.0.0.0 89.163.163.201 0.0.0.0 UG 0 0 0 eth0
89.163.163.200 0.0.0.0 255.255.255.248 U 0 0 0 eth0
Code: Select all
route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 89.163.163.201 0.0.0.0 UG 0 0 0 eth0
89.163.163.200 0.0.0.0 255.255.255.248 U 0 0 0 eth0
Re: FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-30 20:17
by Joe User
OK, dann sollte es mit dieser Konfiguration klappen:
Code: Select all
hostname="DM0202.static.rdns-uclo.net"
defaultrouter="89.163.163.201"
ifconfig_em0="inet 89.163.163.202 netmask 255.255.255.248"
ifconfig_em0_aliases="\
inet 89.163.163.203 netmask 255.255.255.248 \
inet 89.163.163.204 netmask 255.255.255.248 \
inet 89.163.163.205 netmask 255.255.255.248 "
Alles Andere kannst Du wieder entsorgen.
Re: FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-30 20:21
by Proteus
Ich werde es gleich Probieren ich baue gerade php und php-fpm.
Re: FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-30 21:04
by Proteus
Es ist zum aus der Haut fahren. 204 und 205 funktionieren immer noch nicht. Ich habe jetzt doch mal ein Supportticket eingelöst, denn unter Linux geht es ja auch nicht. Es kann halt bis Montag dauern, denn ich habe kein Premium Support.
Hier sind alle IPs die dem Server zugewiesen wurden.
Code: Select all
Aktueller Status
IP-Adresse
89.163.163.202
Netmask
255.255.255.248
Broadcast
89.163.163.207
Gateway
89.163.163.201
DNS-Server
89.163.236.14
213.202.250.188
Aktueller Status
IP-Adresse
89.163.163.203
Netmask
255.255.255.248
Broadcast
89.163.163.207
Gateway
89.163.163.201
DNS-Server
89.163.236.14
213.202.250.188
Aktueller Status
IP-Adresse
89.163.163.204
Netmask
255.255.255.248
Broadcast
89.163.163.207
Gateway
89.163.163.201
DNS-Server
89.163.236.14
213.202.250.188
Aktueller Status
IP-Adresse
89.163.163.205
Netmask
255.255.255.248
Broadcast
89.163.163.207
Gateway
89.163.163.201
DNS-Server
89.163.236.14
213.202.250.188
Re: FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-30 21:57
by Joe User
Also ich kann von hier aus alle IPs (202, 203, 204, 205) pingen, tracerouten und bekomme auch auf allen IPs einen SSH-Handshake mit dem gleichen Fingerprint. Demnach sollte jetzt (30.08.2014 21:55 Uhr) Alles passen.
Code: Select all
[root@devnoip:~] # traceroute 89.163.163.202
traceroute to 89.163.163.202 (89.163.163.202), 64 hops max, 52 byte packets
1 fritz.box (10.0.0.1) 0.382 ms 0.370 ms 0.361 ms
...
6 xe1-decix-v4.fra1-de.myloc.de (80.81.192.162) 19.262 ms 28.266 ms 25.415 ms
7 5.199.140.35 (5.199.140.35) 16.861 ms 16.722 ms 19.417 ms
8 89.163.236.130.static.rdns-uclo.net (89.163.236.130) 17.762 ms 17.773 ms 17.764 ms
9 DM0611.static.rdns-uclo.net (89.163.163.202) 17.015 ms 17.176 ms 17.178 ms
[root@devnoip:~] # traceroute 89.163.163.203
traceroute to 89.163.163.203 (89.163.163.203), 64 hops max, 52 byte packets
1 fritz.box (10.0.0.1) 0.380 ms 0.367 ms 0.361 ms
...
7 xe1-decix-v4.fra1-de.myloc.de (80.81.192.162) 19.717 ms 23.922 ms 25.867 ms
8 5.199.140.35 (5.199.140.35) 54.214 ms 23.172 ms 17.315 ms
9 89.163.236.130.static.rdns-uclo.net (89.163.236.130) 17.913 ms 18.228 ms 18.003 ms
10 DM0611.static.rdns-uclo.net (89.163.163.203) 17.470 ms 17.327 ms 17.314 ms
[root@devnoip:~] # traceroute 89.163.163.204
traceroute to 89.163.163.204 (89.163.163.204), 64 hops max, 52 byte packets
1 fritz.box (10.0.0.1) 0.528 ms 0.367 ms 0.360 ms
...
6 xe1-decix-v4.fra1-de.myloc.de (80.81.192.162) 17.764 ms 19.718 ms 24.074 ms
7 5.199.140.35 (5.199.140.35) 17.035 ms 16.869 ms 16.713 ms
8 89.163.236.130.static.rdns-uclo.net (89.163.236.130) 17.913 ms 17.919 ms 17.468 ms
9 DM0611.static.rdns-uclo.net (89.163.163.204) 17.019 ms 16.872 ms 17.024 ms
[root@devnoip:~] # traceroute 89.163.163.205
traceroute to 89.163.163.205 (89.163.163.205), 64 hops max, 52 byte packets
1 fritz.box (10.0.0.1) 0.380 ms 0.368 ms 0.361 ms
...
7 xe1-decix-v4.fra1-de.myloc.de (80.81.192.162) 17.912 ms 18.817 ms 23.617 ms
8 5.199.140.35 (5.199.140.35) 18.889 ms 19.581 ms 19.564 ms
9 89.163.236.130.static.rdns-uclo.net (89.163.236.130) 20.163 ms 19.723 ms 18.517 ms
10 DM0611.static.rdns-uclo.net (89.163.163.205) 17.462 ms 17.627 ms 17.169 ms
[root@devnoip:~] # ping -c 3 89.163.163.202
PING 89.163.163.202 (89.163.163.202): 56 data bytes
64 bytes from 89.163.163.202: icmp_seq=0 ttl=58 time=17.166 ms
64 bytes from 89.163.163.202: icmp_seq=1 ttl=58 time=17.136 ms
64 bytes from 89.163.163.202: icmp_seq=2 ttl=58 time=16.984 ms
--- 89.163.163.202 ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 16.984/17.095/17.166/0.080 ms
[root@devnoip:~] # ping -c 3 89.163.163.203
PING 89.163.163.203 (89.163.163.203): 56 data bytes
64 bytes from 89.163.163.203: icmp_seq=0 ttl=58 time=17.615 ms
64 bytes from 89.163.163.203: icmp_seq=1 ttl=58 time=17.344 ms
64 bytes from 89.163.163.203: icmp_seq=2 ttl=58 time=17.585 ms
--- 89.163.163.203 ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 17.344/17.515/17.615/0.121 ms
[root@devnoip:~] # ping -c 3 89.163.163.204
PING 89.163.163.204 (89.163.163.204): 56 data bytes
64 bytes from 89.163.163.204: icmp_seq=0 ttl=58 time=17.464 ms
64 bytes from 89.163.163.204: icmp_seq=1 ttl=58 time=16.985 ms
64 bytes from 89.163.163.204: icmp_seq=2 ttl=58 time=17.135 ms
--- 89.163.163.204 ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 16.985/17.195/17.464/0.200 ms
[root@devnoip:~] # ping -c 3 89.163.163.205
PING 89.163.163.205 (89.163.163.205): 56 data bytes
64 bytes from 89.163.163.205: icmp_seq=0 ttl=58 time=17.612 ms
64 bytes from 89.163.163.205: icmp_seq=1 ttl=58 time=17.287 ms
64 bytes from 89.163.163.205: icmp_seq=2 ttl=58 time=17.136 ms
--- 89.163.163.205 ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 17.136/17.345/17.612/0.199 ms
[root@devnoip:~] # ssh root@89.163.163.202
The authenticity of host '89.163.163.202 (89.163.163.202)' can't be established.
ECDSA key fingerprint is c2:a2:77:c9:5f:b1:e1:b2:96:4e:5c:b3:f9:05:04:91.
No matching host key fingerprint found in DNS.
Are you sure you want to continue connecting (yes/no)? no
Host key verification failed.
[root@devnoip:~] # ssh root@89.163.163.203
The authenticity of host '89.163.163.203 (89.163.163.203)' can't be established.
ECDSA key fingerprint is c2:a2:77:c9:5f:b1:e1:b2:96:4e:5c:b3:f9:05:04:91.
No matching host key fingerprint found in DNS.
Are you sure you want to continue connecting (yes/no)? no
Host key verification failed.
[root@devnoip:~] # ssh root@89.163.163.204
The authenticity of host '89.163.163.204 (89.163.163.204)' can't be established.
ECDSA key fingerprint is c2:a2:77:c9:5f:b1:e1:b2:96:4e:5c:b3:f9:05:04:91.
No matching host key fingerprint found in DNS.
Are you sure you want to continue connecting (yes/no)? no
Host key verification failed.
[root@devnoip:~] # ssh root@89.163.163.205
The authenticity of host '89.163.163.205 (89.163.163.205)' can't be established.
ECDSA key fingerprint is c2:a2:77:c9:5f:b1:e1:b2:96:4e:5c:b3:f9:05:04:91.
No matching host key fingerprint found in DNS.
Are you sure you want to continue connecting (yes/no)? no
Host key verification failed.
[root@devnoip:~] #
Re: FreeBSD 10: Neue IP lassen sich nur mit DHCP einbinden
Posted: 2014-08-31 15:37
by Proteus
Jetzt verstehe einer die Welt. Ich war wohl zu schnell und konnte es wohl nicht erwarten bist die IP dem Server zugewiesen wurden. Ich bin immer davon ausgegangen das es bei einem DNS Update manchmal bis zu 24 Stunden dauern kann, nicht aber bei einer fest zugewiesenen IP.
Ich bedanke mich mal wieder für ein gelöstes Problem.