Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - quesseb

Pages: [1]
1
ok, fixed! Very good job, thank you  :D

2
ok, great
And what about the second point? There was missing some references to key in named.conf.local...

3
Was awaiting that feature for long time!


Good points:
1/ migration to network object. Very good!
2/ migration from static to dynamic without loosing records


Bad points:
1/ dhcp crashes because /etc/bind/keys has not secret
Code: [Select]
key "my.domain." {
    algorithm HMAC-MD5;
    secret "";
};
maybe a timeout while generating keys?

2/ when I manually generate a new key, configuration of both bind and dhcpd doesn't work (no forward map, permission problem for dhcp)
I had to add in named.conf
Code: [Select]
controls {
        inet 127.0.0.1 allow {localhost; } keys { "mykey"; };
};
I had to modify named.conf.local
add
Code: [Select]
allow-update {
        key "mykey";
    };
deleted policy-update blocks

and tada!  :)
Code: [Select]
DHCPOFFER on 192.168.1.9 to 08:00:27:03:8e:4c via eth1
client 127.0.0.1#44348: signer "mykey" approved
client 127.0.0.1#44348: updating zone 'my.domain/IN': adding an RR at 'virtxp.my.domain' A
client 127.0.0.1#44348: updating zone 'my.domain/IN': adding an RR at 'virtxp.my.domain' TXT
Added new forward map from virtxp.my.domain. to 192.168.1.9
client 127.0.0.1#59650: signer "mykey" approved
client 127.0.0.1#59650: updating zone '1.168.192.in-addr.arpa/IN': deleting rrset at '9.1.168.192.in-addr.arpa' PTR
client 127.0.0.1#59650: updating zone '1.168.192.in-addr.arpa/IN': adding an RR at '9.1.168.192.in-addr.arpa' PTR
added reverse map from 9.1.168.192.in-addr.arpa. to virtxp.my.domain.

4
Thank you for zentyal-desktop, I've been trying it on lucid with success. Few questions:
- do you plan to add single sign on for samba shares (pam_mount) like windows in a domain?
- how to get all granted shares mounted on login?

5
Installation and Upgrades / Re: [SOLVED]Using MS VPN trought zentyal
« on: September 18, 2010, 06:22:20 pm »
Is what you call MS VPN a PPTP server?
In that case GRE packets must be handled by the firewall...

6
Installation and Upgrades / Re: Cannot edit dns
« on: September 18, 2010, 12:23:25 am »
he probably choosed via DHCP config to set a dynamic domain, so its zone is read only...

Pages: [1]