--- /dev/null
+#
+# set list of bad nodes
+#
+# Copyright (c) 1998 - Dirk Koopman G1TLH
+#
+# $Id$
+#
+my ($self, $line) = @_;
+return (1, $self->msg('e5')) if $self->priv < 6;
+my @f = split /\s+/, $line;
+my @out;
+for (@f) {
+ my $call = uc $_;
+ push @DXProt::nodx_node, $call;
+ push @out, "$call is now a badnode";
+}
+return (1, @out);
--- /dev/null
+#
+# show list of bad nodes
+#
+# Copyright (c) 1998 - Dirk Koopman G1TLH
+#
+# $Id$
+#
+my ($self, $line) = @_;
+return (1, $self->msg('e5')) if $self->priv < 6;
+my @out;
+for (@DXProt::nodx_node) {
+ push @out, "$_ is a badnode";
+}
+return (1, @out);