...
Ob an den Netzwerkgeräten eine IPv6-Adresse vergeben wurde prüft man wie folgt:
Code Block |
---|
root@lemakerroot@ubuntu:~# ifconfig|grep -i inet6 inet6 addr: fe80::48:6ff:fe00:ebb9/64 Scope:Link inet6 addr: ::1/128 Scope:Host inet6 addr: fe80::9a3a:16ff:fef9:6c51/64 Scope:Link root@lemakerroot@ubuntu:~# |
Wäre IPv6 deaktiviert würde "ifconfig" auch keine "inet6"-Einträge liefern
Um IPv6 zu deaktivieren legt man die Datei "/etc/sysctl.d/01-disable-ipv6.conf"
mit u.a. Inhalt an und startet das System neu.
...
Code Block |
---|
#vorhandenen Nameserver anzeigen root@ubuntu:~# cat /etc/resolv.conf # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN nameserver 192.168.101.1 search fritz.box root@ubuntu:~# #neuen Nameserver setzen auf den eigenen Server (localhost) #Damit wird der von Samba bereitgestellte Nameservice genutzt. root@ubuntu:~# echo nameserver 127.0.0.1|resolvconf -a eth0 root@ubuntu:~# cat /etc/resolv.conf # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN nameserver 127.0.0.1 search fritz.box root@ubuntu:~# |
Domainaccount Administrator anlegen
Code Block |
---|
root@ubuntu:/etc/samba# kadmin.local Authenticating as principal root/admin@ubuntu.fritz.box with password. kadmin.local: addprinc Administrator WARNING: no policy specified for Administrator@ubuntu.fritz.box; defaulting to no policy Enter password for principal "Administrator@ubuntu.fritz.box": Re-enter password for principal "Administrator@ubuntu.fritz.box": Principal "Administrator@ubuntu.fritz.box" created. kadmin.local: exit root@ubuntu:/etc/samba# |
...
Serverdienste starten
Info |
---|
Aktuelles Problem:Der Samba ist in der Lage ebenfalls einen "KDC"-Dienst anzubieten.
|
...