Recent Posts

Pages: 1 ... 4 5 [6] 7 8 9
51
News / Re: SourceForge
« Last post by razwall on February 23, 2025, 03:16:21 PM »
This is just another piece to the puzzle, the next step is packaging what I do have and including it in the iso. But I have to make sure everything is working properly. Almost there!
52
News / Re: SourceForge
« Last post by razwall on February 23, 2025, 03:14:30 PM »
Yup, the post says this does not install razwall. It's just a custom iso I will use to build the installer on.
53
News / Re: SourceForge
« Last post by techdevel2 on February 22, 2025, 03:16:36 AM »
Hi,
I have tried the shared IOS image and it is simple linux distribution yet. Currently, nothing related to razwall is found in it.
54
Dev Stuff / Re: Canned Perl based Dashboard JSON XHR Request Data Responses
« Last post by razwall on February 19, 2025, 08:39:37 AM »
[b]With the rapid advancements in cloud-based infrastructure and AI-enhanced security measures, is there still a place for traditional firewall solutions like RazWall, pfsense, and opnsense?[/b]

Absolutely, Advances in cloud infrastructure does not negate on-premise security and endpoint protection! If anything, it should have more appeal to help strengthen the security gap between end user/administrator and cloud infrastructure. I still firmly believe in maintaining an disconnect between cloud and AI services when it comes to security. That is not to say that they can't interface and share data or work together, but they should not be a one-in-the-same solution. But I digress, this is only my opinion!

[b]How should developers and admins adapt their strategies to remain relevant in this evolving landscape? [/b]

The age old question, everyone has predictions about where things are headed and how to get there but only time will tell. Relevance in terms of admins, is merely a matter of participation and willingness to accept or reject change that matters to them. There is no one correct path to get where you need to go! Movement is life, the only advice I can give here is keep advancing, keep evolving, work with the solutions that work for you.

what is mean? and for what i getting it every day in my PM?

not really sure what you are asking in this question. if you clarify i can try provide a better answer.
55
Dev Stuff / -
« Last post by Tuthupliple on February 17, 2025, 06:39:58 PM »
In it something is also idea excellent, agree with you.

With the rapid advancements in cloud-based infrastructure and AI-enhanced security measures, is there still a place for traditional firewall solutions like RazWall, pfsense, and opnsense? How should developers and admins adapt their strategies to remain relevant in this evolving landscape? ( ** REMOVED SUSPECTED SPAM ** ) what is mean? and for what i getting it every day in my PM?
56
General Discussion / been away from this project
« Last post by razwall on February 09, 2025, 09:50:08 AM »
Hello everyone, I have been busy working on another project but I will be back on this project shortly. With some additional updates to the ISO installer including the first package install release of razwall beta!
57
News / Re: SourceForge
« Last post by razwall on January 28, 2025, 10:48:22 AM »
RazWall Alpha 1.1 ISO images has been pushed to sourceforge. I also published a new README. updated screen grabs on SF as well.
58
Dev Stuff / realtime stats
« Last post by razwall on January 26, 2025, 08:42:28 PM »
#!/usr/bin/perl
use strict;
use warnings;
my @types = qw/nat mangle filter/;
$SIG{INT} = sub{print "\e[?25h\e[u"; exit};
print "\e[40;37m\e[2J\e[?25l";
while (1) {
  print "\e[0;0H";
  my %output = map {$_ => scalar `iptables -t $_ -L -v -Z`} @types;
  foreach my $type (@types) {
    print "\e[01;34m------", uc($type), '-' x (73 - length($type)), "\
+n";
    $output{$type} =~ s/ pkts[^\n]*\n(\n|Zeroing)/$1/gs;
    foreach my $line (split /\n/, $output{$type}) {
      next if $line =~ m/^Zeroing/ || $line eq '';
      print $line =~ m/^\s*(\d+)/ || $line =~ m/(\d+) packets/
        ? ($1 > 0
          ? ($line =~ m/DROP|DENY|REJECT/
            ? "\e[01;40;31m"
            : "\e[01;40;32m")
          : "\e[00;40;37m")
        : "\e[00;40;33m";
      print "\e[K$line\e[01;40;37m\n"
    }
  }
  print "\e[s";
  sleep 1
}
59
News / Re: SourceForge
« Last post by razwall on January 24, 2025, 12:55:10 PM »
New ISO is on the way up. This will be the base for the install. As far I can tell from my limited run testing, this contains all of the bare minimum modules required to operate the firewall (Still no Razwall packages) I will be posting all of the package and build data on github soon.
60
News / Re: SourceForge
« Last post by razwall on January 24, 2025, 09:28:26 AM »
Updated the ISO. I will be posting shortly. Here are the changes:
Fixed missing dependency for httpd
Removed optional packages and RAWRITE utils for windows
Managed to slim the initial install ISO from 786MB -> 322MB
Next, I will begin modifying the setup scripts to automate the installation for the specific use case and creating razwall test packages.

Pages: 1 ... 4 5 [6] 7 8 9