Blob Blame History Raw
/*
 * iSCSI Administration library
 *
 * Copyright (C) 2008-2009 Red Hat, Inc. All rights reserved.
 * Copyright (C) 2008-2009 Hans de Goede <hdegoede@redhat.com>
 * maintained by open-iscsi@googlegroups.com
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published
 * by the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 *
 * See the file COPYING included with this distribution for more details.
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "libiscsi.h"

int main(void)
{
	struct libiscsi_network_config config;

	if (libiscsi_get_firmware_network_config(&config)) {
		fprintf(stderr, "No iscsi boot firmware found\n");
		return 1;
	}

	printf("dhcp:\t%d\n", config.dhcp);
	printf("iface:\t%s\n", config.iface_name);
	printf("mac:\t%s\n", config.mac_address);
	printf("ipaddr:\t%s\n", config.ip_address);
	printf("mask:\t%s\n", config.netmask);
	printf("gate:\t%s\n", config.gateway);
	printf("dns1:\t%s\n", config.primary_dns);
	printf("dns2:\t%s\n", config.secondary_dns);

	return 0;
}