Problem with dnsextd when creating Wide-Area-Bonjour

Hello,
I've been struggling for some time trying to create a WAB test environment but without success and would appreciate some help.
Im using a mac mini (later 2014) running Yosemite to run bind (9.10) and ISC for a testing zone with DDNS enabled. This setup is running perfectly with or without TSIG (both ways run perfectly).
When I try to include dnsextd in this setup for LLQ is where the problem start. No more DDNS updates. When I run dnsextd in debug mode, it shows the following message:
"Rejecting Update Request with 2 additions but no lease".
The dhcp logs report RCODE 5 (from dnsextd), which means REFUSED.
Any ideias?
I see a lot of website (including DNS-SD.org) with very simple cookbooks explaining how to create the WAB environment, but I cant make it work. Even if I configure the zone keys in dnsextd, it wont work. The error change to a new one (dnsextd responds without TSIG, which is not accepted by the DHCP server) and it wont work also.
Any idea of fix would be appreciated.

thanks for the quick reply AndrewTJ - I did notice the typo after posting and corrected however the problems remains.  below is the contents of my up.com.dns file - i can see nothing out of place but cannot get a resolution
;  Database file up.com.dns for up.com zone.
;      Zone version:  22
@                       IN  SOA dns1.up.com.  hostmaster.up.com. (
                         22           ; serial number
                         900          ; refresh
                         600          ; retry
                         86400        ; expire
                         3600       ) ; default TTL
;  Zone NS records
@                       NS dns1.up.com.
;  Zone records
_http._tcp.up.com.              PTR website._http._tcp.up.com.
website._http._tcp.up.com.      TXT ( "txt path=/" )
                         SRV 0 0 80 dns1.up.com.
_services._dns-sd._udp.up.com.  PTR _http._tcp.up.com.
b._dns-sd._udp.up.com.          PTR @
lb._dns-sd._udp.up.com.         PTR @
dns1.up.com.                    A 192.168.1.153
Any ideas?

Similar Messages

  • Problems with PreparedStatement when select restrict are byte params

    Hi,
    i have a problem trying to select information when the "select" has a byte restrict.
    The table in database is:
    CREATE TABLE `positions` (
    `PKID` int(10) unsigned NOT NULL auto_increment,
    `POSCODE` varbinary(30) NOT NULL,
    `ISWTURN` binary(1) NOT NULL,
    `QTT_GAMES` int(10) unsigned NOT NULL default '1',
    PRIMARY KEY (`PKID`),
    UNIQUE KEY `UNIQ_POS` (`POSCODE`,`ISWTURN`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    And the test code to get the qtt_games is :
    conn = DriverManager.getConnection (url,user,pwd);
    byte bcode[] = poscode.getByteArrayCode();
    // bcode is inserted ok in another preparedstatement...
    String query = "SELECT qtt_games FROM positions "+
    "WHERE poscode=? and iswturn=?";
    PreparedStatement pstmt = conn.prepareStatement(query);
    pstmt.setBytes (1,bcode);
    pstmt.setByte (2,poscode.getIsWhiteTurn()); //it returns a byte
    ResultSet rs = pstmt.executeQuery (query);
    When pstmt.executeQuery is reached, it's thrown the exception:
    com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '=? and iswturn=?' at line 1
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:936)
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2870)
    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1573)
    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1665)
    at com.mysql.jdbc.Connection.execSQL(Connection.java:3170)
    at com.mysql.jdbc.Connection.execSQL(Connection.java:3099)
    at com.mysql.jdbc.Statement.execute(Statement.java:695)
    at app.server.bbdd.MYSQLBDManager.getGamesBasicInfo(MYSQLBDManager.java:942)
    at app.server.bbdd.MYSQLBDManager.main(MYSQLBDManager.java:1068)
    Can anybody tell me what's wrong?? I think the query is ok, but don't know what's happening with this...
    Lots of thanks.

    Hi,
    sorry, i know i've post this same message by error in "new to java" thread.... (i'm new in the forum... can i delete the wrong comment??)
    The SQLState is 42000 (syntax error), but it doesn't give me much information because i had already searched in google why can be the cause of it, but there are only a few comments about problems like this, without a solution...
    The column poscode in the table positions contains an array of bytes that codify a position in a chess board. I've to use this in the WHERE clause because i'm developing a chess game consulting project where there are millions of different positions and i've to get the games that have the same position in it's position history.
    The code to insert the positions is:
    query = "INSERT INTO positions VALUES "+
         "(null,?,?,default) "+
         "ON DUPLICATE KEY UPDATE qtt_games=qtt_games+1";
    pstmt = conn.prepareStatement(query,Statement.RETURN_GENERATED_KEYS);
    pstmt.setBytes(1,bcode);
    pstmt.setByte(2,poscode.getIsWhiteTurn());
    pstmt.executeUpdate();
    which works ok and positions can be seen from mysql browser, but i can't select them using the PreparedStatement..
    I have been searching a lot of information about this problem with no results... this is the why i posted this...
    Any help will be useful, thanks.

  • Problems with encoding when creating link in mail

    A user inputs some text in a field at a webpage.
    From this I build a mail that has a link that looks like this:
    http://www.domain.com/a/controller/action/?name=[INPUT VALUE]
    My problem is that when I try to get the value in the receiving action, using params.name, it does not so good. The real problem is about odd characters like our swedish �,�,� for example.
    What I have tried to do when building the link is to use URLEncoder.encode([INPUT VALUE], 'UTF-8') and then using URLDecoder.decode(params.name, 'UTF-8') but it does not work at all. Is there any other way I should attack this problem?

    def name = "Mattias Sands�ter";
    def email = params.email;
    name = URLEncoder.encode(name, 'UTF-8');
    println(name)
    def message = http://domain.com/a/b/download/?name=" + name
    MailSender.sendMail(email, "Subject", message);{code}
    {code}def download = {
    println(params.name)
    println("download after decode" + URLDecoder.decode(params.name, 'UTF-8')){code}
    The first println looks fine, it says Mattias+Sands%C3%A4er
    The second println looks horrible, Mattias Sands��ter
    The third looks the same.
    Then I send this to my gsp(jsp) page and wants to put this in a standard textfield, but it of course looks like Mattias Sands��ter there too.
    This is on a linux-server, on my local computer, everything works as expected.
    Whatever it its, something happens to the name-variable when it is clicked on in the e-mail. It looks good in the e-mail, get pasted in the address-field in the browser correctly, but when retreiving the variable with params.name it is screwed
    Edited by: sandsater on Jul 8, 2008 8:44 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Problem with FQDN when creating Web Dynpro App

    Hi @ all,
    when create a WDA the url is set like this: HTTP://SAPVM1:8000/sap/bc/webdynpro/sap/z_wda_sample.
    I defined the icm/host_name_full and the SAPLOCALHOSTFULL correct*, but it did not work. I have also restarted the system more than one time. I searched a lot, but found no solution here on sdn.
    *correct means : sapvm1.mydomain.de
    Even if I try to start a default wda example the wrong FQDN is set. But if I start the wda at the SICF (test service) it works, the FQDN is set right.
    thx in advance.
    Timo

    Hi,
    it seems that the httpurlloc table was the problem. The host entry in this table was no FQDN, I changed it into FQDN and it works. Now the generated url of the web dynpro applications is correct.
    Maybe this helps somebody else.
    See also
    http://help.sap.com/saphelp_nw70/helpdata/en/42/d547ab30b6473ce10000000a114e5d/frameset.htm
    Timo

  • Problems  with CS4 when several photos are open

    Hello all,
    I have a problem with Photoshop CS4. When I have several photos open, the borders of the underlying is shining through:
    This remains until I move the upper picture. Its a rather ennoying effect...
    My configuration is the following:
    Windows XP Professional SP3, Pentium 4 Dual 3.2 Ghz, 3.25 GB RAM, NVidia Quadro FX 1500, driver 6.14.11.8120, plenty of HD space, etc...
    Photoshop CS4 11.0.1
    Who can help?
    Thanks in advance, Dan

    What springs to the eye is that it's the UI elements (the frames around the images) not the pixel content, so I'd rule out any OpenGL issues. More likely it's a general memory shortage of the graphics system, which either is due to using excessive screen resolutions, another app stealing resources or a configuration problem. I would definitely check the NVidia panel and see, if you have not inadvertently toggled some critical setting. Furthermore look, whether some program is running in the background that may steal the screen buffer. Funnily, Corel Capture could be such a suspicious tool, if it's running all the time. Also turn off the rulers. There has been an issue with those and it may still not be fixed in the latest update. As a last thing to look into, of course make sure to get rid of any fancies you may be using, e.g. drop shadows on your windows, a desktop image, transparent window dragging and such. all those consume memory on the graphics card.
    Mylenium

  • Problem with pixelation when creating a pdf

    Hi,
    A client sent me an InDesign file and a PDF of what that file made. I was asked to make some text edits. I finish and export to pdf. When viewing my new pdf at 100% the images are pixelated really bad. The original pdf they are high quality images at 100%. I didn't mess with the images at all. I don't know what I am doing wrong.
    Any help would be appreciated.
    Extra info
    ID CS6
    Images are jpegs
    High quality prin settings
    Compress jpegs (maximum quality)
    Do not downsample

    InDesign creates low resolution previews of placed graphics (to enable quicker screen draws).
    When you opened the file you should have been alerted that the document contained missing links.
    During the work time on the file, the links panel would have shown similair to
    InDesign probably also alerted when you exported to pdf.
    If you have instructed InDesign to disable warnings, you should consider turning them back on from the Preferences panel
    Edit > Preferences > General

  • CUPS queues don't work with Wide Area Bonjour

    I'm completely flummoxed!
    My school board is installing new switches in all our schools, and moving from a single flat VLAN to multiple - one for printers, one for server, one for client workstations. Printing queues advertised with Bonjour worked fine on the old network, but multiple VLANs breaks all that since Bonjour is in the unrouteable multicast range (which makes sense, since it's not meant to work outside of the local network). I have old Tiger servers at the schools, running on hardware that doesn't do VLANs (old G4 towers), so advertising queues with Bonjour using the school server can't get me by.
    I've set up BIND (DNS) to show my CUPS IPP print queues from a central Lion workstation (elemprtsrv01.example.com) in the school's subnet (10.159.40.0/22; academic-wrd.scd.example.com) as follows (my domain substituted with example.com for anonymity) - the relevant section snipped from the rest of the zone file:
    $ORIGIN academic-wrd.scd.example.com.
    ; Wide Area Bonjour Browsing
    b._dns-sd._udp                    IN PTR          @
    lb._dns-sd._udp                    IN PTR          @
    db._dns-sd._udp                    IN PTR          @
    ; Wide Area Bonjour Printing
    SCD-234-Q._printer._tcp          IN          SRV          0          0  631          elemprtsrv01.example.com.
    _printer._tcp                                         IN PTR          SCD-234-Q._printer._tcp
    _cups._sub._ipp._tcp                     IN PTR          SCD-234-Q._printer._tcp
    _ipp._tcp                                                   IN PTR          SCD-234-Q._printer._tcp
    _universal._sub._ipp._tcp           IN PTR          SCD-234-Q._printer._tcp
    SCD-234-Q._printer._tcp          IN TXT ( "txtvers=1" "qtotal=1" "rp=printers/SCD234Q" "note=2nd Floor Workroom" "ty=Xerox WorkCentre 5755, EXAMPLE Student 2.2" "product=(EXAMPLE-22STUD-XeroxWC5775)" "printer-state=3" "printer-type=0x80B0F6" "Transparent=T" "Binary=T" "Fax=F" "Punch=T" "Bind=F" "Sort=T" "Scan=F" "Duplex=T" "Staple=T" "Copies=T" "Collate=T" "Color=F" "pdl=application/pdf,application/postscript,application/octet-stream,image/jpeg ,image/png" )
    The relevant section of the /etc/cupsd.conf file on elemprtsrv01 (10.100.1.73) looks like this:
    ServerAlias elemprtsrv01.example.com
    ServerAlias printerserver.academic-wrd.scd.example.com
    MaxLogSize 20m
    MaxCopies 100
    LogLevel debug2
    SystemGroup admin
    SystemGroupAuthKey system.print.admin
    # Allow remote access
    #Port 631
    Listen 10.100.1.73:631
    Listen 127.0.0.1:631
    Browsing On
    BrowseOrder deny,allow
    BrowseRemoteProtocols cups
    BrowseLocalProtocols cups dnssd
    DefaultEncryption Never
    DefaultAuthType Basic
    WebInterface Yes
    BrowseWebIF No
    MaxClients 1000
    RootCertDuration 300
    <Location />
      # Allow remote access...
      Order deny,allow
      Allow all
      AuthType None
    </Location>
    <Location /rss>
      Order deny,allow
      Allow all
    </Location>
    <Location /printers>
      Order deny,allow
      Allow all
      AuthType None
      Encryption Never
    </Location>
    <Location /jobs>
      Order deny,allow
      Allow all
      AuthType None
      Encryption Never
    </Location>
    If I use Bonjour Browser on the print server network and on the school's academic-wrd.scd.example.com subnet, I see identical info to that provided by my DNS records - in other words, Wide Area Bonjour (WAB) appears to be working and providing the necessary details.
    When I try to add a printer on a school workstation, the WAB printer appears...though the PPD ("(EXAMPLE-22STUD-XeroxWC5775)" should match SCD234Q.ppd from the server queue) doesn't get imported from the server and I get a Generic Printer Description instead. When I try to print on the client, I see promising notes about connecting to the print server, but then it always pauses the queue. Here's the relevant section from /etc/cups/ppd/SCD234Q.ppd:
    *Manufacturer: "Xerox"
    *ModelName: "Xerox WorkCentre 5775"
    *ShortNickName: "Xerox WorkCentre 5775"
    *NickName: "Xerox WorkCentre 5755, EXAMPLE Student 2.2"
    *PCFileName: "XRWC5775EXAMPLESTUD22.PPD"
    *Product: "(EXAMPLE-22STUD-XeroxWC5775)"
    *PSVersion: "(3010.106) 3000"
    In the CUPS error log, I get this annoying encryption error, which no else appears to have had, according to the usual search engines:
    d [04/Jan/2012:21:47:41 -0500] cupsdAcceptClient(lis=0x7fc585200470(13)) Clients=0
    D [04/Jan/2012:21:47:41 -0500] cupsdAcceptClient: 20 from 10.159.40.174:631 (IPv4)
    d [04/Jan/2012:21:47:41 -0500] cupsdAddSelect(fd=20, read_cb=0x102d74b81, write_cb=0x0, data=0x7fc584034400)
    d [04/Jan/2012:21:47:41 -0500] cupsdReadClient(con=0x7fc584034400(20)) con->http.error=0 con->http.used=0, con->http.state=0 con->data_encoding=HTTP_ENCODE_LENGTH, con->data_remaining=0, con->file=-1
    d [04/Jan/2012:21:47:41 -0500] cupsdReadClient: Saw first byte 02, auto-negotiating SSL/TLS session...
    d [04/Jan/2012:21:47:41 -0500] encrypt_client(con=0x7fc584034400(20))
    D [04/Jan/2012:21:47:41 -0500] get_cdsa_certificate: Looking for certs for "elemprtsrv01.example.com"...
    E [04/Jan/2012:21:47:51 -0500] Unable to encrypt connection from 10.159.40.174 - unknown error -1=ffffffffffffffff (-1)
    D [04/Jan/2012:21:47:51 -0500] cupsdCloseClient: 20
    D [04/Jan/2012:21:47:51 -0500] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    d [04/Jan/2012:21:47:51 -0500] cupsdRemoveSelect(fd=20)
    d [04/Jan/2012:21:47:51 -0500] cupsdCheckJobs: 0 active jobs, sleeping=0, reload=0
    OK, so here's the annoying bit: if I manually configure the queue on a Snow Leopard (or higher) client by going into System Preferences, adding an IP printer with IPP protocol (elemprtsrv01.example.com, queue name /printers/SCD234Q) then it works. With Leopard or Tiger, the PPD doesn't load from the server, and the generic PPD is substituted automatically.
    If I manually add "ServerName elemprtsrv01.example.com" to /etc/cups/client.conf on the client machine, then it shows all the server queues and magically works too - even on Leopard and Tiger.
    The problem is that I DON'T want to have all the server queues appearing on every workstation, since it'll cause mahem when the students discover all the queues and print to other schools for kicks. WAB was supposed to solve that for me by advertising only the queues that were meant to be accessed by that subnet (they'd all be there on the server, but only a real techie would know how to access them, since they weren't advertised).
    Why don't the WAB queues work? Why do I get an encryption error with them?
    How do I get the server's PPD to download automatically to the client? (this is especially useful for printers with customized PPDs set up with the proper settings for that printer...and for the Xerox copiers that are using accounting codes present in the server's PPD)
    Any help would be very much appreciated!

    Figured it out...stick with Lion (Client or Server) and use the web interface to add printers and customize the /etc/cups.conf file. If you use either System Preferences or the Print config in Server Admin on earlier versions of Mac OS X Server, you'll bugger up your cups.conf file (top part of which is reproduced here):
    ServerAlias *
    LogLevel debug2
    SystemGroup admin
    SystemGroupAuthKey system.print.admin
    # Allow remote access
    Port 631
    Listen elemprtsrv01.example.com
    Listen /private/var/run/cupsd
    Browsing On
    BrowseOrder allow,deny
    BrowseRemoteProtocols CUPS
    BrowseAddress @LOCAL
    BrowseLocalProtocols CUPS dnssd lpr
    DefaultAuthType Basic
    WebInterface Yes
    <Location />
      # Allow remote access...
      Order allow,deny
      Allow all
    </Location>
    <Location /rss>
      Order allow,deny
      Allow all
    </Location>
    <Location /classes>
      Order allow,deny
      Allow all
    </Location>
    <Location /printers>
      Order allow,deny
      Allow all
    </Location>
    <Location /admin>
    </Location>
    The key is to allow anything as a server name (ServerAlias *) and Allow All for / and /printers (though / by itself should be enough). If you want to listen for LPR (port 515) then I think it needs to be listed in BrowseLocalProtocols - it's not a valid option for BrowseRemoteProtocols.
    On the Wide Area Bonjour front, I created TWO different entries for each printer in my domain, because otherwise the queues would appear and instantly disappear in the Tiger browser - Tiger only shows the LPR queue. The queue name is preceded by "printers/" in the IPP queue, but not with the LPR queue. Here's an example from the top of my BIND student zone file:
    $ORIGIN academic-wrd.scd.example.com.
    ; Wide Area Bonjour Browsing
    b._dns-sd._udp                    IN PTR          @
    lb._dns-sd._udp                    IN PTR          @
    db._dns-sd._udp                    IN PTR          @
    ; Wide Area Bonjour Printing
    SCD-234\0322nd\032Floor\032Copier\032LPR\032Q._printer._tcp          IN          SRV          0          0  515          elemprtsrv01.example.com.
    _printer._tcp                                         IN PTR          SCD-234\0322nd\032Floor\032Copier\032LPR\032Q._printer._tcp
    SCD-234\0322nd\032Floor\032Copier\032LPR\032Q._printer._tcp          IN TXT ( "txtvers=1" "qtotal=1" "rp=SCD234Q" "note=2nd Floor Workroom" "Transparent=T" "Binary=T" "Fax=F" "Punch=3" "Bind=F" "Sort=T" "Scan=F" "Duplex=T" "Staple=T" "Copies=T" "Collate=T" "Color=F" "pdl=application/postscript" )
    SCD-234\0322nd\032Floor\032Copier\032IPP\032Q._ipp._tcp          IN          SRV          0          0  631          elemprtsrv01.example.com.
    _ipp._tcp                                                   IN PTR          SCD-234\0322nd\032Floor\032Copier\032IPP\032Q._ipp._tcp
    _cups._sub._ipp._tcp                     IN PTR          SCD-234\0322nd\032Floor\032Copier\032IPP\032Q._ipp._tcp
    _universal._sub._ipp._tcp           IN PTR          SCD-234\0322nd\032Floor\032Copier\032IPP\032Q._ipp._tcp
    SCD-234\0322nd\032Floor\032Copier\032IPP\032Q._ipp._tcp          IN TXT ( "txtvers=1" "qtotal=1" "rp=printers/SCD234Q" "note=2nd Floor Workroom" "ty=Xerox WorkCentre 5755 Student 2.2" "product=(Xerox WorkCentre 5775 Student22)" "printer-state=3" "printer-type=0x80B0F6" "Transparent=T" "Binary=T" "Fax=F" "Punch=3" "Bind=F" "Sort=T" "Scan=F" "Duplex=T" "Staple=T" "Copies=T" "Collate=T" "Color=F" "pdl=application/pdf,application/postscript,application/octet-stream,image/jpeg ,image/png" "URF=W8,SRGB24,CP1,RS600" )
    ;SCD-236\032Office\032LPR\032Q._printer._tcp          IN          SRV          0          0  515          elemprtsrv01.example.com.
    ;_printer._tcp                                         IN PTR          SCD-236\032Office\032LPR\032Q._printer._tcp
    ;SCD-236\032Office\032LPR\032Q._printer._tcp          IN TXT ( "txtvers=1" "qtotal=1" "rp=SCD236Q" "note=Main Office" "Transparent=F" "Binary=F" "Fax=F" "Punch=0" "Bind=F" "Sort=F" "Scan=F" "Duplex=F" "Staple=F" "Copies=T" "Collate=T" "Color=F" "pdl=application/postscript" )
    ;SCD-236\032Office\032IPP\032Q._ipp._tcp          IN          SRV          0          0  631          elemprtsrv01.example.com.
    ;_ipp._tcp                                                   IN PTR          SCD-236\032Office\032IPP\032Q._ipp._tcp
    ;_cups._sub._ipp._tcp                     IN PTR          SCD-236\032Office\032IPP\032Q._ipp._tcp
    ;_universal._sub._ipp._tcp           IN PTR          SCD-236\032Office\032IPP\032Q._ipp._tcp
    ;SCD-236\032Office\032IPP\032Q._ipp._tcp          IN TXT ( "txtvers=1" "qtotal=1" "rp=printers/SCD236Q" "note=Main Office" "ty=Lexmark T520" "product=(Lexmark T520 SCD)" "printer-state=3" "printer-type=0x8090C6" "Transparent=F" "Binary=F" "Fax=F" "Punch=0" "Bind=F" "Sort=F" "Scan=F" "Duplex=F" "Staple=F" "Copies=T" "Collate=T" "Color=F" "pdl=application/pdf,application/postscript,application/octet-stream,image/jpeg ,image/png" "URF=W8,SRGB24,CP1,RS600" )
    Note that the second queue is commented-out in the student zone file because it's the office queue and I didn't want it to appear in student workstation queue browsers. I customized the PPDs for these printers and thus changed the "product=" part of the TXT record to match the name in the altered PPD's "*PRODUCT:" line so that it wouldn't match with an already-installed PPD.
    The above zone file generates two different queues (IPP and LPR) for each printer on Leopard and higher queue browsers, but only one queue (LPR) on Tiger. We're still supporting Tiger and even the odd Mac OS 9 client (no browsing, but they can do a manual LPR queue). Windows does both or you can manually add the IPP queue (add a new network printer using the URL "http://elemprtsrv01.example.com:631/printers/SCD234Q" and make sure you're using the PostScript driver for the printer, or you'll get garbage). iOS devices browse for _universal._sub._ipp._tcp records and you need to add the URF= field in the TXT record or the queue won't show up...and add a file /usr/share/cups/mime/airprint.types with the single line "image/urf urf (0,UNIRAST<00>)".
    All my users from Mac OS 9 to Mac OS X to Windows can now print using a central print server that magically shows up in the print browser...yay!

  • Having a problem with dates when I send my numbers doc to excel. dates are all out and that they have to cut and paste individual entries onto their spreadsheet. Any idea how I can prevent this

    having a problem with dates when I send my numbers doc to excel. dates are all out and that they have to cut and paste individual entries onto their spreadsheet. Any idea how I can prevent this.
    I'm using Lion on an MBP and Numbers is the latest version

    May you give more details about what is wrong with your dates ?
    M…oSoft products aren't allowed on my machines but I use LibreOffice which is a clone of Office.
    When I export from Numbers to Excel and open the result with LibreOffice, the dates are correctly treated.
    To be precise, dates after 01/01/1904 are correctly treated. dates before 01/01/1904 are exported as strings but, as it's flagged during the export process, it's not surprising.
    Yvan KOENIG (VALLAURIS, France) mardi 3 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    Please : Search for questions similar to your own before submitting them to the community
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • I have a problem with itunes when I sync the saved music and want to sync my iphone 5 ios 7.0.6 no longer passes the music thing is that just stays on "waiting for sync" and not worry please help are more than 400 songs that do not want to hear who are wi

    I have a problem with itunes when I sync the saved music and want to sync my iphone 5 ios 7.0.6 no longer passes the music thing is that just stays on "waiting for sync" and not worry please help are more than 400 songs that do not want to hear who are wi

    Plawexki wrote:
    ...  do you know if the contacts, photos, messages etc will be wiped?
    Yes... Everything will be Wiped and Replaced with what is currently on Your Mac.
    SYNCING with iTunes
    See here  >  http://support.apple.com/kb/HT1386
    From Here  >  http://www.apple.com/support/iphone/syncing/
    You may find this information of interest...
    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    And See Here...
    How to Use Multiple iDevices with One Computer

  • How to setup Wide Area Bonjour across multiple Subnets?

    Hi Gents,
    It's been painful trying to get this up and i feel i am almost there, but can seem to complete the last bit
    I have this network i am helping to manage
    OS X Lion Server running
         DNS
         RADIUS
         Open Directory
    So the wifi network is in a seperate subsnet from the LAN on which the Mac Server is connected to which posses the problem of Bonjour not routed between the two subnets. So i decided to enable Wide-Area bonjour browsing and create a Service record for afp share folders. So i have got to the point where it's coming up on devices on the seperate subnet under the network icon, however when i try to connect to the service it just says connection failed. Authentication is occuring because if i use wrong credentials it doesn't attempt to connect.
    I believe it might be the way i am defining TXT. I have little experience here, any assistance would be appreciated
    This is the configruation in DNS Settings on Server Admin
    Service Name: Work\03****\03\you
    Service Type: _afpovertcp._tcp.
    Host: work.damnyou.org.
    Port: 548
    Priority: 1
    Weigth: 0
    TXT: "path=PUBLIC/"
    Anytime i attempt to connect, it just says Connection Failed
    Thanks,
    DeeBeeMac

    DeeBeeMac,
    Did you get things working good for you?  I also have a wired VLAN and a WiFi VLAN that I have a implementation with Aruba network for my WiFi,  they have an option called airgroup and printers seem to come and go.   I really don't want to use the Aerohive solution,  so I was thinking of a Mac mini with an interface on both VLANS.   Do you need to setup anything to get os x to announce services it see's on both networks?   I also tried avahi and turned on reflector, however it seems spotty as well.

  • Wide area bonjour for mac

    I know this is not an exclusive forum for "bonjour for macbook" but I could not find any category explicitly catering issues with this so I thought this could be the place to ask my query.
    So here is my problem.
    To enable wide area bonjour on my laptops I have configured my own local dns sever by following details on this document http://www.dns-sd.org/ServerSetup.html and then configured my clients i.e. laptops by following http://www.dns-sd.org/ClientSetup.html page.

    I'm trying to do the same thing and found a couple helpful threads and links.
    http://blog.inig-services.com/wp-content/uploads/2010/03/WAB.pdf
    http://discussions.apple.com/message.jspa?messageID=5959986
    Unfortunately, following the above PDF guide, one key step fails. After enabling bonjour registrations using the serveradmin settings command and restarting DNS, I can see that the dnsextd proxy fails to start:
    dnsextd starting
    main: setrlimit - Invalid argument
    Using default file descriptor resource limit
    startedvialaunchd
    ConnectToServer: connect - Socket is not connected
    ConnectToServer: retrying connection
    I verified via netstat -na that BIND is listening on 5030 and I can use nslookup to run queries against it. There appears to be no good reason why dnsextd can't connect to it @ 127.0.0.1#5030 as far as I can tell.
    Is this feature broken in the latest Snow Leopard Server 10.6 release?

  • Wide-Area Bonjour / Dynamic Global Hostname

    Hello everyone
    I have a very specific problem, My AEBS is not sending UPDATE requests to my own DNS server when my DSL IP address changes over time.
    I have my own DNS server and run a dynamic zone with TSIG aututhentication.
    If I configure the "Dynamic global hostname" on my Macs behind my AEBS acting as a NAT gateway, they will register themselves withe the correctly natted address.
    In fact, this is amazing and works very well:
    sftp-ssh.tcp.dyn.secret.domain domain name pointer MacPro.sftp-ssh.tcp.dyn.secret.domain.
    smb.tcp.dyn.secret.domain domain name pointer MacPro.smb.tcp.dyn.secret.domain.
    ssh.tcp.dyn.secret.domain domain name pointer MacPro.ssh.tcp.dyn.secret.domain.
    macpro.dyn.secret.domain has address xx.yy.169.96
    But my AEBS itelf has an older address:
    airport.tcp.dyn.secret.domain domain name pointer Airport.airport.tcp.dyn.secret.domain.
    smb.tcp.dyn.secret.domain domain name pointer Airport.smb.tcp.dyn.secret.domain.
    airport.dyn.secret.domain has address xx.yy.177.175
    I can force the update by restarting my AEBS, but this is not a good workaround.
    Has anyone else experience running a wide-area bonjour DNS server?
    Thanks

    Hi Patrick,
    I suggest you bring this up on the bonjour-dev[1] mailing list. You're much more likely to reach people with the right knowledge there.
    Andrew
    [1] http://lists.apple.com/mailman/listinfo/bonjour-dev

  • Wide area bonjour - windows dns

    Hi,
    I have been trying to setup wide area bonjour using ms dns server for serveral days and come up against a dead end.  In most examples on the internet BIND is used as the DNS server and all configuration is shown for BIND (except one PDF "www.grouplogic.com/Knowledge/PDFUpload/.../WanBonjour_1.pdf" which has examples for MS dns but it doesnt work).
    So I have managed to configure the MS dns server as far as advertising available services but when I try to resolve a service it fails.  I think its a problem with the srv record but have tried so many different configurations for this record I have lost count.  config below.
    Has any one set this up? could really do with a good example of it working on windows dns.

    thanks for the quick reply AndrewTJ - I did notice the typo after posting and corrected however the problems remains.  below is the contents of my up.com.dns file - i can see nothing out of place but cannot get a resolution
    ;  Database file up.com.dns for up.com zone.
    ;      Zone version:  22
    @                       IN  SOA dns1.up.com.  hostmaster.up.com. (
                             22           ; serial number
                             900          ; refresh
                             600          ; retry
                             86400        ; expire
                             3600       ) ; default TTL
    ;  Zone NS records
    @                       NS dns1.up.com.
    ;  Zone records
    _http._tcp.up.com.              PTR website._http._tcp.up.com.
    website._http._tcp.up.com.      TXT ( "txt path=/" )
                             SRV 0 0 80 dns1.up.com.
    _services._dns-sd._udp.up.com.  PTR _http._tcp.up.com.
    b._dns-sd._udp.up.com.          PTR @
    lb._dns-sd._udp.up.com.         PTR @
    dns1.up.com.                    A 192.168.1.153
    Any ideas?

  • VPN + DNS-Enabler + Wide Area Bonjour = no success

    Hi,
    what I am trying to do is broadcast the bonjour services of my home network such as file sharing, iTunes home-sharing and the like through my VPN connection. Since I am not too savvy with networking related topics I bought "DNS Enabler Snow" since it advertises to provide wide area bonjour with a minimum of setup hassle.
    Now I am only getting so far that I can see my machine at home through VPN under "Network" in OS X. But I cannot connect. It always says "Connection Failed". Neither can I see my home iTunes library.
    In the "Domains" section of DNS Enabler I entered:
    Domain Name: <my DynDNS Domain>
    Primary DNS Server: <my DynDNS Domain>
    Host Name: <my DynDNS Domain>
    IP address: <the local IP address of the machine running DNS Enabler>
    In the bonjour section of DNS Enabler I entered:
    Service Type: afpovertcp.tcp
    Service Name: File Sharing
    Host: <my DynDNS Domain>
    Port: 584
    TXT: path=/
    Can anyone hint me at what might be wrong with this configuration?
    Thank you!
    Florian

    I think the problem with the current setup is the use of the DynDNS hostname for the AFP service's hostname. When you're connected via the VPN you are effectively on the same network and so connection's attempted to the external-IP recorded by the DynDNS hostname will fail as it's not possible to loop back (for want of a better description) through the router. If you add a new A-record to the zone that points to the machines internal IP address and then change the service to point to the new record it should work via the VPN.
    iTunes sharing won't work via this method as iTunes will only register and browse for services in the ".local" domain. The ".local" domain (a top-level domain like ".com") is only available via multicast-DNS. Multicast traffic as a general rule is not carried over a VPN (or the internet for that matter) as due to it's broadcast nature it can quickly clog up and cripple a network.
    Hamachi unlike most VPN solutions presents itself as a virtual network interface that can carry multicast traffic which is why iTunes sharing works over a Hamachi connection. A cursory Google search tells me that multicast traffic can be carried over a OpenVPN connection with some additional configuration - your mileage might vary though.
    Wide-Area Bonjour works by adding an additional domain to the system that software can then use for registering and browsing services. Unlike regular Bonjour, Wide-Area Bonjour works over the internet as it's based on traditional unicast DNS with a few extensions for updating records in realtime and NAT-PMP or uPNP (one or the other is in pretty much every router) for automatically setting up port-forwarding. If NAT-PMP or uPNP is not available, services can still be browsed but can not be registered (only services that can accessed via the internet are advertised); it's for this reason that Wide-Area Bonjour won't work properly in concert with a VPN. Whilst most OS X software is written to just register and browse in whatever domains are available there are some like iTunes that only register in the ".local" domain.
    You can find out more detailed information about these topics at http://multicastdns.org/ and http://dns-sd.org/. I'm happy to answer any further questions you might have either here or via email. If my Wide-Area Bonjour service sounds like a good fit for you, please drop me a note and I'll let you know when I open-up the service to new users again (slated for mid-March).

  • Problem with Folio Builder - added articles are "spinning"

    Hello,
    today we are experiencing strange problems with Folio Builder. We are adding new artcles to folio created today and all added articles have same issue - spinning wheel in folio builder. Such articles we can't see in Content viewer until we delete existing folio.
    Thanks for help

    Hi,
    Could be that there was a network problem when uploading the InDesign documents.
    Try to select the articles and delete them with the trashcan. And then reupload the documents from InDesign.
    Good luck!

Maybe you are looking for

  • Can I use axis.jar in my custom component

    Can I use axis.jar in my custom component. Is there any license need to user this jar ?? Thanks

  • Internal Order Down Payment settle to Asset

    Hi, I have a requirement related to Down Payment shows in Order. User want that if there is any down payment against purchase order & purchase order contain real order, they want that FBL1N/FAGLL03 report show Order Number in reports. So that down pa

  • My ac adapter problem (plzzzz help)

    I use my ibook g4 all the time for college work and for general use. Just recently I tripped on the ac adapter cable it came right out and then the ibook itself fell to the floor (from my bed) and landed on the dc side. it didnt look that bad until I

  • Image overlaps txt only in IE7, how do i fix CSS?

    looks great in Firefox and IE 8; however, in IE 7 the text runs under the photos rather than wrapping around it.not sure what could be causing this. Any thoughts? I am on a mac, my virtual OS is Win7... i don't have access to IE7 at the moment. http:

  • Disk Privileges for internal and external drive

    Hello, I have a Time Capsule and external HD attached to it. I want to share the space on external drive with all users on Time Capsule network and at the same time I want to be the only one who can access the internal TC disk. I don't know how to se