Displaying 20 results from an estimated 47 matches for "clientip".
Did you mean:
client_ip
2020 Oct 05
2
isc-dhcp dynamic update problem
...tt 0 2020/10/04 22:08:55;
binding state active;
next binding state free;
rewind binding state free;
hardware ethernet c8:1f:66:08:dd:49;
uid "\001\310\037f\010\335I";
set vendor-class-identifier = "MSFT 5.0";
set noname = "dhcp-172-30-1-40";
set ClientIP = "172.30.1.40";
set ClientDHCID = "c8:1f:66:08:dd:49";
set ClientName = "MB-DISPATCH-20";
client-hostname "MB-DISPATCH-20";
on expiry {
set ClientIP =
binary-to-ascii (10, 8, ".", leased-address) ;
log (debug,...
2007 Mar 28
0
How to limit a user to access a few sites. (SOLVED)
...ess to an username with SQUID and limiting access
of some users with their ips to a few sites
rules added to squid.conf file
external_acl_type ip_user %SRC %LOGIN /usr/lib/squid/ip_user_check -f
/etc/squid/ip.conf
acl ncsa_users proxy_auth REQUIRED
acl ip_users external ip_user %SRC %LOGIN
acl clientips src 192.168.101.28 192.168.101.29 192.168.101.30
acl allowedsites url_regex -i "/etc/squid/allowedsites.txt"
http_access deny !ncsa_users
http_access deny !ip_users
http_access deny clientips !allowedsites
http_access allow ip_users clientips
http_access allow ip_users allowedsites
http...
2014 Apr 17
1
samba4 bind9_dlz and dhcp
...rmal behaivor?
Any enlightment would be great !
?
Greetz,
?
Louis
?
p.s.
?
This is the part i have in the DHCP server within the subnet.
?
??? on commit {
??log("=============[ START COMMIT ]================");
??set ClientName = pick (option fqdn.hostname, option host-name));
??set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
??set ClientDHCID = binary-to-ascii(16, 8, ":", hardware);
??log(concat("Commit: IP: ", ClientIP, " DHCID: ", ClientDHCID, " HostName: ", ClientName));
??execute("/etc/dhcp/bin/dhcp-dyndns.sh"...
2015 Mar 15
2
Dovecot 2.1.7 still accepting SSLv3 though disabled?
...aken from
https://bettercrypto.org/static/applied-crypto-hardening.pdf. But this
is not the problem, when I comment it out, Dovecot still behaves the
same way.
When I enable verbose_ssl I get this:
2015-03-15 08:27:39 imap-login: Warning: SSL: where=0x10, ret=1: before/accept initialization [$CLIENTIP]
2015-03-15 08:27:39 imap-login: Warning: SSL: where=0x2001, ret=1: before/accept initialization [$CLIENTIP]
2015-03-15 08:27:39 imap-login: Warning: SSL: where=0x2002, ret=-1: unknown state [$CLIENTIP]
2015-03-15 08:27:39 imap-login: Warning: SSL: where=0x2001, ret=1: SSLv3 read client...
2019 Oct 10
2
dns replication error due to deleted records
...ase-time 86400; #un d?a
max-lease-time 86400; #un d?a
authoritative;
log-facility local7;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.101 192.168.1.250;
on commit {
set noname = concat("dhcp-", binary-to-ascii(10, 8, "-",
leased-address));
set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
set ClientName = pick-first-value(option host-name, host-decl-name,
config-option host-name, noname);
execute("/etc/dhcp/update.sh", "add", ClientIP, ClientName);
}
on release {
#ClientIP y ClientNam...
2015 Jun 24
2
Using isc-dhcp for DDNS with Samba4 internal DNS
El 24/06/15 a les 17:02, James ha escrit:
> On 6/24/2015 10:13 AM, Rowland Penny wrote:
>> On 24/06/15 14:17, Luca Olivetti wrote:
>>> El 24/06/15 a les 14:30, James ha escrit:
>>>> Hello,
>>>>
>>>> Is it possible to use isc-dhcp for DDNS with Samba internal DNS? I
>>>> would rather not use bind as I understand you can't
2016 Jan 27
0
Securring DHCP, with DDNS
...mapi-port 7911;
omapi-key omapi_key;
key omapi_key {
algorithm hmac-md5;
secret "PUT_YOUR_KEY_HERE";
}
Replace PUT_YOUR_KEY_HERE with the key you extracted from the private
key created by the dnssec command
Add the following to dhcpd.conf on both machines:
on commit {
set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
set ClientDHCID = binary-to-ascii(16, 8, ":", hardware);
set ClientName = pick-first-value(option host-name,
config-option-host-name, client-name);
log(concat("Commit: IP: ", ClientIP, " DHCID: ", ClientDHCID, &...
2018 Aug 15
2
DDNS with bind9 and isc-dhcp-server
...192.168.0.31, 192.168.56.32;
pool {
failover peer "dhcp-failover"; # Add for failover
max-lease-time 1800; # 30 minutes
range 192.168.56.220 192.168.56.239;
}
}
on commit {
set noname = concat("dhcp-", binary-to-ascii(10, 8, "-", leased-address));
set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
set ClientDHCID = binary-to-ascii(16, 8, ":", hardware);
set ClientName = pick-first-value(option host-name,
config-option-host-name, client-name, noname);
log(concat("Commit: IP: ", ClientIP, " DHCID: ", ClientD...
2019 Aug 13
4
Configure DHCP to update DNS records with BIND9
...68.192.in-addr.arpa.";
option ntp-servers 192.168.0.1;
pool {
range 192.168.0.100 192.168.0.200;
}
}
on commit {
set noname = concat("dhcp-", binary-to-ascii(10, 8, "-", leased-address));
set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
set ClientDHCID = concat (
suffix (concat ("0", binary-to-ascii (16, 8, "",
substring(hardware,1,1))),2), ":",
suffix (concat ("0", binary-to-ascii (16, 8, "",
substring(hardware,2,1))),2),...
2019 Jan 10
4
samba_dnsupdate options: --use-samba-tool vs. --use-nsupdate, and dhcpd dynamic updates
...in the Samba Wiki (with
>> correction of a couple errors in the "on release" and "on expiry"
>> sections of the example dhcpd.conf file).
>
>What errors ?
In "on expiry" changed:
execute("/usr/local/bin/dhcp-dyndns.sh", "delete", ClientIP, "", "0");
to
execute("/usr/local/bin/dhcp-dyndns.sh", "delete", ClientIP, "0", "");
and in on release (this one not really an error) gave
execute("/usr/local/bin/dhcp-dyndns.sh", "delete", ClientIP, ClientDHCID);
a...
2016 Jan 27
2
Securring DHCP, with DDNS
If I don't use DHCP failover, can you tell me how to do to to have
manually dhcp start method working...
I think I could made a mistake, this is what i did : ( I using Louis
script from "old set of script" directory :
https://secure.bazuin.nl/scripts/ )
- On server S4 : resolv.conf set to S4 first and S4bis in second
- On server S4 : in dhcp-dyndns-debian.sh,
2015 Jun 25
0
Using isc-dhcp for DDNS with Samba4 internal DNS
...since the server is in a VLAN that's not accessible
> outside the office, and I'm not there right now.
I case you need it, this is what I have in my dhcpd.conf
on commit {
set noname = concat("dhcp-", binary-to-ascii(10, 8, "-",
leased-address));
set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
set ClientName = pick-first-value(option host-name, host-decl-name,
config-option host-name, noname);
execute("/etc/dhcp/update.sh", "add", ClientIP, ClientName);
}
on release {
#ClientIP and ClientN...
2020 Jul 05
2
same changes in the DHCP to DNS script
...the main script with following context:
NOTE: i have both in /etc/dhcp/bin/
#!/bin/bash
(setsid ${0%/*}/dhcp-dyndns.sh $@ 2>&1 & disown)
exit 0
2. changes in dhcpd.conf.main
######Samba##################################################################################
on commit {
set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
set noName = concat("dhcp-", ClientIP);
set ClientDHCID = binary-to-ascii(16, 8, ":", substring(hardware,1,6));
set ClientName = pick-first-value(config-option server.ddns-hostname,
option host-name, config-option-host-na...
2019 Jan 10
1
samba_dnsupdate options: --use-samba-tool vs. --use-nsupdate, and dhcpd dynamic updates
...172.20.10.128 netmask 255.255.255.128 {
option subnet-mask 255.255.255.128;
pool {
range 172.20.10.165 172.20.10.229;
default-lease-time 43200;
max-lease-time 86400;
}
}
on commit {
set noname = concat("dhcp-", binary-to-ascii(10, 8, "-", leased-address));
set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
set ClientDHCID = binary-to-ascii(16, 8, ":", hardware);
set ClientName = pick-first-value(option host-name, config-option-host-name, client-name, noname);
log(concat("Commit: IP: ", ClientIP, " DHCID: ", ClientD...
2019 Oct 10
0
dns replication error due to deleted records
...192.168.90.2 and 192.168.90.5 are your DCs, so why
are your clients in the '192.168.1.0/24' subnet ?
>
> ? range 192.168.1.101 192.168.1.250;
> ? on commit {
> ??? set noname = concat("dhcp-", binary-to-ascii(10, 8, "-",
> leased-address));
> ??? set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
> ??? set ClientName = pick-first-value(option host-name,
> host-decl-name, config-option host-name, noname);
> ??? execute("/etc/dhcp/update.sh", "add", ClientIP, ClientName);
> ? }
>
> ? on release {
&...
2015 Sep 03
2
samba_dlz: Failed to connect
...option time-offset 0;
option routers 192.168.0.1;
option domain-name "example.com";
option domain-name-servers 192.168.0.2;
option domain-search "example.com";
option netbios-name-servers 192.168.0.2;
option ntp-servers 192.168.0.2;
}
on commit {
set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
set ClientDHCID = binary-to-ascii(16, 8, ":", hardware);
set ClientName = pick-first-value(option host-name,
config-option-host-name, client-name);
log(concat("Commit: IP: ", ClientIP, " DHCID: ", ClientDHCID, &...
2016 Apr 21
0
[Fwd: Re: [Fwd: Re: [Fwd: Re: [Fwd: Re: Samba 4 more complete]]]]
...update the reverse zone directly ?
>
> Rowland
>
OK, I thought that was what you were doing, what you are missing
(amongst other things) is this from the bottom of dhcpd.conf:
on commit {
set noname = concat("dhcp-", binary-to-ascii(10, 8, "-", leased-address));
set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
set ClientDHCID = binary-to-ascii(16, 8, ":", hardware);
set ClientName = pick-first-value(option host-name,
config-option-host-name, client-name, noname);
log(concat("Commit: IP: ", ClientIP, " DHCID: ", Client...
2014 Jun 10
0
Dovecot Configuration for access with GSSAPI / Kerberos
...cot/modules/auth/libmech_gssapi.so
2014-06-09T09:59:22.600982+02:00 highlands dovecot: auth: Debug: auth
client connected (pid=5770)
2014-06-09T09:59:22.602211+02:00 highlands dovecot: auth: Debug: client
in:
AUTH#0111#011GSSAPI#011service=imap#011session=E7rSlmL70wDAqEWd#011lip=mailServerIP#011rip=clientIP#011lport=143#011rport=46035
2014-06-09T09:59:22.602498+02:00 highlands dovecot: auth: Debug:
gssapi(?,clientIP,<E7rSlmL70wDAqEWd>): Obtaining credentials for
imap at dartmoor.outback
2014-06-09T09:59:22.610815+02:00 highlands dovecot: auth:
gssapi(?,clientIP,<E7rSlmL70wDAqEWd>): While a...
2016 Apr 21
0
[Fwd: Re: [Fwd: Re: [Fwd: Re: [Fwd: Re: [Fwd: Re: Samba 4 more complete]]]]]
...> Rowland
>>
>
> OK, I thought that was what you were doing, what you are missing
> (amongst other things) is this from the bottom of dhcpd.conf:
>
> on commit {
> set noname = concat("dhcp-", binary-to-ascii(10, 8, "-",
> leased-address));
> set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
> set ClientDHCID = binary-to-ascii(16, 8, ":", hardware);
> set ClientName = pick-first-value(option host-name,
> config-option-host-name, client-name, noname);
> log(concat("Commit: IP: ", ClientIP, " DH...
2016 Jan 27
2
Securring DHCP, with DDNS
...y {
> algorithm hmac-md5;
> secret "PUT_YOUR_KEY_HERE";
> }
>
> Replace PUT_YOUR_KEY_HERE with the key you extracted from the private
> key created by the dnssec command
>
> Add the following to dhcpd.conf on both machines:
>
> on commit {
> set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
> set ClientDHCID = binary-to-ascii(16, 8, ":", hardware);
> set ClientName = pick-first-value(option host-name,
> config-option-host-name, client-name);
> log(concat("Commit: IP: ", ClientIP, " DHCID: &q...