From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12501 invoked by alias); 22 Jul 2002 12:58:46 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 12494 invoked from network); 22 Jul 2002 12:58:45 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 22 Jul 2002 12:58:45 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id g6MClGs30875 for ; Mon, 22 Jul 2002 08:47:16 -0400 Received: from deneb.localdomain (msalter.cipe.redhat.com [10.0.0.36]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id g6MCwiR25890; Mon, 22 Jul 2002 08:58:44 -0400 Received: (from msalter@localhost) by deneb.localdomain (8.11.6/8.11.6) id g6MCuCf31655; Mon, 22 Jul 2002 08:56:12 -0400 Date: Mon, 22 Jul 2002 05:58:00 -0000 Message-Id: <200207221256.g6MCuCf31655@deneb.localdomain> From: Mark Salter To: vinayak@multitech.co.in CC: gdb@sources.redhat.com In-reply-to: <3D3B8B17.2603542D@multitech.co.in> (message from Vinayak P Risbud on Mon, 22 Jul 2002 10:03:27 +0530) Subject: Re: gdbserver References: <3D3950ED.84D74808@multitech.co.in> <3D3995DF.1040500@ges.redhat.com> <3D3B8B17.2603542D@multitech.co.in> X-SW-Source: 2002-07/txt/msg00221.txt.bz2 >>>>> Vinayak P Risbud writes: > Thanks for your response, > I want to debug, my target remotely through > TCP/IP link. The BootCode I have is Redboot, > and I am able to ping the target over LAN. > How can I do this using GDB ? By default, RedBoot will listen on port 9000, so something like this should connect you to the target: (gdb) target remote board_name:9000 or (gdb) target remote 192.168.1.100:9000 --Mark