Sponsored Content
Full Discussion: Can't connect to remote mini
Operating Systems OS X (Apple) Can't connect to remote mini Post 302433832 by mbohn on Wednesday 30th of June 2010 04:04:27 PM
Old 06-30-2010
Quote:
Originally Posted by tlarkin
mDNSResponder is a daemon that OS X uses for resolve DNS from reverse look ups. Disabling it is not a good idea if you wish DNS to still function.
Please re-read the tech note. It gives a method for leaving mDNSResponder functional but it stops Bonjour from advertising services.

In the meanwhile, I've learned that the mini is hanging during bootup and it seems to be unrelated to mDNSResponder.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

what is the command to connect to remote terminals

what is the command to connect to remote terminals? (1 Reply)
Discussion started by: sendtorohitgupt
1 Replies

2. Windows & DOS: Issues & Discussions

Connect to a Remote Sybase Server Through Script.

Hi all, I am trying to connect to Remote Sybase database Server through shell script. I am operating on WindowsXP, connect to Unix(version SunOS: 5.8) The thing is i dont know how to connect to Sybase Server through my script file? Are there any manual pages which can guide me through the... (2 Replies)
Discussion started by: Aparna_k82
2 Replies

3. Shell Programming and Scripting

connect to remote MQ-QManager

Hi , I need to connect to a remote MQ Manager using shell script. Please help. thanks in advance Satya (0 Replies)
Discussion started by: Satyak
0 Replies

4. UNIX for Dummies Questions & Answers

How do I connect to a remote X11 server ?

Hi, how do I connect to a remote x server? i tried this: startx -display 192.168.0.1:0 # when I do this, it just connects to my own x server i.e I see my own desktop. and export DISPLAY=192.168.0.1:0.0 # when I do this nothing happens. (it doesn't even try to connect, no activity in... (7 Replies)
Discussion started by: uxfuser
7 Replies

5. AIX

Connect HMC to remote servers

I'm trying to connect a few servers in different remote locations to my HMC. I added static IPs to the Service Processor through ASM, and did all the necessary network configurations, then connected those servers to our switch. Now my questions are: - in our site, do I need to connect these... (4 Replies)
Discussion started by: Dardeer
4 Replies

6. AIX

AIX Remote Connect Fail With “No more multiple IP addresses to connect” Error

We have a production server at a client site running AIX. And recently when users are trying to connect to it via telnet, it prompts "No more multiple IP addresses to connect". Can I know what does this error mean? and how to rectify this? Thanks. (2 Replies)
Discussion started by: a_sim
2 Replies

7. Red Hat

unable to connect remote server using ssh

hi all i am unable to connect remote server using ssh but i am able to ping the server ssh service is running. (5 Replies)
Discussion started by: nikhil kasar
5 Replies

8. Shell Programming and Scripting

Sudo connect to a remote server and execute scripts in remote server

Hello Every one!! I am trying to write a shell script which will connect to a remote server and execute scripts which are at a certain path in the remote server. Before this I am using a sudo command to change the user. The place where I am stuck is, I am able to connect to the... (6 Replies)
Discussion started by: masubram
6 Replies

9. Shell Programming and Scripting

Script connect to remote server, not find files and exit only from remote server, but not from scrip

I have a script, which connecting to remote server and first checks, if the files are there by timestamp. If not I want the script exit without error. Below is a code TARFILE=${NAME}.tar TARGZFILE=${NAME}.tar.gz ssh ${DESTSERVNAME} 'cd /export/home/iciprod/download/let/monthly;... (3 Replies)
Discussion started by: digioleg54
3 Replies

10. Shell Programming and Scripting

Script to connect to remote and sendmail.

Hello, Kindly guide. SendMail function on my script is not working, but it works manually. Any better way to handle the script is appreciable. #!/bin/sh GetHostConnection() { truncate --size 0 /home/web/for_mail.out while read -r lines ; do ip=`echo $lines | awk '{print... (9 Replies)
Discussion started by: sadique.manzar
9 Replies
Net::Bonjour(3pm)					User Contributed Perl Documentation					 Net::Bonjour(3pm)

NAME
Net::Bonjour - Module for DNS service discovery (Apple's Bonjour) SYNOPSIS
use Net::Bonjour; my $res = Net::Bonjour->new(<service>[, <protocol>]); $res->discover; foreach my $entry ( $res->entries ) { printf "%s %s:%s ", $entry->name, $entry->address, $entry->port; } Or the cyclical way: use Net::Bonjour; my $res = Net::Bonjour->new(<service>[, <protocol>]); $res->discover; while ( 1 ) { foreach my $entry ( $res->entries ) { print $entry->name, " "; } $res->discover; } DESCRIPTION
Net::Bonjour is a set of modules that allow one to discover local services via multicast DNS (mDNS) or enterprise services via traditional DNS. This method of service discovery has been branded as Bonjour by Apple Computer. Base Object The base object would be of the Net::Bonjour class. This object contains the resolver for DNS service discovery. Entry Object The base object (Net::Bonjour) will return entry objects of the class Net::Bonjour::Entry. METHODS
new([<service>, <protocol>, <domain>]) Creates a new Net::Bonjour discovery object. First argument specifies the service to discover, e.g. http, ftp, afpovertcp, and ssh. The second argument specifies the protocol, i.e. tcp or udp. The default protocol is TCP. The third argument specifies the discovery domain, the default is 'local'. If no arguments are specified, the resulting Net::Bonjour object will be empty and will not perform an automatic discovery upon creation. all_services([<domain>]) Returns an array of new Net::Renedezvous objects for each service type advertised in the domain. The argument specifies the discovery domain, the default is 'local'. Please note that the resulting Net::Bonjour objects will not have performed a discovery during the creation. Therefore, the discovery process will need to be run prior to retriving a list of entries for that Net::Bonjour object. domain([<domain>]) Get/sets current discovery domain. By default, the discovery domain is 'local'. Discovery for the 'local' domain is done via MDNS while all other domains will be done via traditional DNS. discover Repeats the discovery process and reloads the entry list from this discovery. entries Returns an array of Net::Renedezvous::Entry objects for the last discovery. protocol([<protocol>]) Get/sets current protocol of the service type, i.e. TCP or UDP. Please note that this is not the protocol for DNS connection. service([<service type>]) Get/sets current service type. shift_entry Shifts off the first entry of the last discovery. The returned object will be a Net::Bonjour::Entry object. EXAMPLES
Print out a list of local websites print "<HTML><TITLE>Local Websites</TITLE>"; use Net::Bonjour; my $res = Net::Bonjour->new('http'); $res->discover; foreach my $entry ( $res->entries) { printf "<A HREF='http://%s%s'>%s</A><BR>", $entry->address, $entry->attribute('path'), $entry->name; } print "</HTML>"; Find a service and connect to it use Socket; use Net::Bonjour; my $res = Net::Bonjour->new('custom'); $res->discover; my $entry = $res->shift_entry; socket SOCK, PF_INET, SOCK_STREAM, scalar(getprotobyname('tcp')); connect SOCK, $entry->sockaddr; print SOCK "Send a message to the service"; while ($line = <SOCK>) { print $line; } close SOCK; Find all service types and print. use Net::Bonjour; foreach my $res ( Net::Bonjour->all_services ) { printf "%s (%s) ", $res->service, $res->protocol; } Find and print all service types and entries. use Net::Bonjour; foreach my $res ( Net::Bonjour->all_services ) { printf "-- %s (%s) --- ", $res->service, $res->protocol; $res->discover; foreach my $entry ( $res->entries) { printf " %s (%s:%s) ", $entry->name, $entry->address, $entry->port; } } SEE ALSO
Net::Bonjour::Entry COPYRIGHT
This library is free software and can be distributed or modified under the same terms as Perl itself. Bonjour (in this context) is a trademark of Apple Computer, Inc. AUTHORS
The Net::Bonjour module was created by George Chlipala <george@walnutcs.com> perl v5.10.0 2009-02-28 Net::Bonjour(3pm)
All times are GMT -4. The time now is 08:14 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy