wie kann ich mysql dazu bewegen, dass er nur auf bestimmte namen/ips hört.
- localhost
- 127.0.0.1
- 192.168.100.1
ich will schon netzwerkverbindungen erlauben. aber eben nur aus dem lokalem netz.
mysql hört aber auch auf der externen ip, was ansich nicht schlimm ist, da ich eine firewall aktiv habe. aber will eben auf nummer sicher gehen. ;-)
hat da einer eine idee, was man machen kann?
schliesslich will ich auch nur dienste auf dem externen interface haben, welche ich dort auch nur benötige. viele habe ich schon deaktiviert. aber eben noch nicht alle. ;-)
hier mal 3x nmap auf die entsprechenden namen/ips.
Code: Alles auswählen
sun:~# nmap localhost
Starting nmap 3.55 ( http://www.insecure.org/nmap/ ) at 2004-09-10 13:25 CEST
Interesting ports on localhost (127.0.0.1):
(The 1646 ports scanned but not shown below are in state: closed)
PORT STATE SERVICE
9/tcp open discard
13/tcp open daytime
22/tcp open ssh
25/tcp open smtp
37/tcp open time
53/tcp open domain
80/tcp open http
110/tcp open pop3
139/tcp open netbios-ssn
445/tcp open microsoft-ds
631/tcp open ipp
953/tcp open rndc
995/tcp open pop3s
3306/tcp open mysql
Nmap run completed -- 1 IP address (1 host up) scanned in 1.449 seconds
sun:~#
Code: Alles auswählen
sun:~# nmap 127.0.0.1
Starting nmap 3.55 ( http://www.insecure.org/nmap/ ) at 2004-09-10 13:25 CEST
Interesting ports on localhost (127.0.0.1):
(The 1646 ports scanned but not shown below are in state: closed)
PORT STATE SERVICE
9/tcp open discard
13/tcp open daytime
22/tcp open ssh
25/tcp open smtp
37/tcp open time
53/tcp open domain
80/tcp open http
110/tcp open pop3
139/tcp open netbios-ssn
445/tcp open microsoft-ds
631/tcp open ipp
953/tcp open rndc
995/tcp open pop3s
3306/tcp open mysql
Nmap run completed -- 1 IP address (1 host up) scanned in 1.443 seconds
sun:~#
Code: Alles auswählen
sun:~# nmap 192.168.100.1
Starting nmap 3.55 ( http://www.insecure.org/nmap/ ) at 2004-09-10 13:25 CEST
Interesting ports on sun.space.local (192.168.100.1):
(The 1647 ports scanned but not shown below are in state: closed)
PORT STATE SERVICE
9/tcp open discard
13/tcp open daytime
22/tcp open ssh
25/tcp open smtp
37/tcp open time
53/tcp open domain
80/tcp open http
139/tcp open netbios-ssn
143/tcp open imap
445/tcp open microsoft-ds
631/tcp open ipp
993/tcp open imaps
3306/tcp open mysql
Nmap run completed -- 1 IP address (1 host up) scanned in 1.462 seconds
sun:~#
Code: Alles auswählen
sun:~# nmap <externe ip>
Starting nmap 3.55 ( http://www.insecure.org/nmap/ ) at 2004-09-10 13:25 CEST
Interesting ports on <externer name>.de (<externe ip>):
(The 1653 ports scanned but not shown below are in state: closed)
PORT STATE SERVICE
9/tcp open discard
13/tcp open daytime
22/tcp open ssh
37/tcp open time
80/tcp open http
631/tcp open ipp
3306/tcp open mysql
Nmap run completed -- 1 IP address (1 host up) scanned in 1.475 seconds
sun:~#