• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. BryceZ
    3. Topics
    B
    • Profile
    • Following 0
    • Followers 1
    • Topics 6
    • Posts 241
    • Best 1
    • Controversial 0
    • Groups 0

    Topics created by BryceZ

    • B

      Solved Bugs in FOG 0.33

      Bug Reports
      • • • BryceZ
      308
      0
      Votes
      308
      Posts
      376.5k
      Views

      Jaymes DriverJ

      [quote=“pmonstad, post: 26357, member: 17422”]Again, no critizism about 0.33B. It is very nice and powerful and a lot better than 0.32. I just try to find out how it works. All my questions/feedbacks are not because I dislike/disagree how it works now, but more a question if it works as expected or if it is a bug. It is a beta/release candidate and I thought feedbacks were welcome even if they not always are bugs…[/quote]

      They are welcome, but if you keep throwing information at us without researching if it IS a bug or without ASKING if it is a bug and just assuming and then posting topics like crazy because you don’t understand, you leave us all a little frustrated, and maybe even lead to topics or posts being ignored.

      We are more than willing to help you to understand, there some walkthroughs tailored towards individuals that have never used FOG before, and that would be a great place to start.

      Please familiarize yourself with the documentation, then come back and ask questions that you don’t understand.

      fog_0.33b is still in beta/release candidate, that is correct, and we do want to fix as many bugs as possible. And you can REALLY help us by trying to recreate your issue a couple times. Document how you arrived at the issue, and then attempt to solve it. Make sure to document your steps in solving, as this will help us to help others and to ultimately fix the problem.

      Since this is a beta you shouldn’t use it for production anyway, and if you do be prepared to break it and fix it many times, and possibly re-install just as many. Coming to us with a resolve for an issue you found holds a much greater merit than one just saying hey this doesn’t work.

    • B

      FOG and External Authentication - Shibboleth

      General
      • • • BryceZ
      2
      0
      Votes
      2
      Posts
      1.6k
      Views

      B

      No. I haven’t thought about external authentication yet.

      It’s something i want to support, but right now ive got other code to convert 🙂

    • B

      Location vs Hostname

      General
      • • • BryceZ
      5
      0
      Votes
      5
      Posts
      3.4k
      Views

      B

      [FONT=Tahoma][COLOR=#141414]My apologies to anyone trying to read this thread without having seen it first on the [URL=‘http://sourceforge.net/projects/freeghost/forums/forum/716418/topic/4719993’][COLOR=#555555]sourceforge forum[/COLOR][/URL], I was not aware how much the formatting was messed up.[/COLOR][/FONT]
      [FONT=Tahoma][COLOR=#141414] [/COLOR][/FONT]
      [FONT=Tahoma][COLOR=#141414]My first thought was something like “Great! Deeper AD integration will remove the hassle of setting everything up the first time, and might even be able to maintain things in an orderly fashion!” but I have a hard time believing anything like that would be easy to implement or work as smoothly as I would like.[/COLOR][/FONT]
      [FONT=Tahoma][COLOR=#141414] [/COLOR][/FONT]
      [FONT=Tahoma][COLOR=#141414]Some initial questions for this approach:[/COLOR][/FONT]
      [LIST]
      []Would FOG do a scheduled pull from AD or would a manual import be simpler to maintain?
      []Would these groups be locked down in some way, or would users be able to add or remove hosts from a group built by AD?
      [*]How would this play out in a host swap scenario since the new host wouldn’t be in the correct OU until it’s finished imaging?
      [/LIST]

    • B

      Solved Tracking which user created which task

      General
      • • • BryceZ
      3
      0
      Votes
      3
      Posts
      1.5k
      Views

      B

      I remember seeing that field and wondering why it wasn’t actually called anywhere… but my main focus was getting usernames listed under the Active Tasks page, and it seemed less terrible to just slap the currentUser onto the task name than to write a function to call a single field.

    • B

      Solved Building a new boot image

      General
      • • • BryceZ
      2
      0
      Votes
      2
      Posts
      1.9k
      Views

      B

      I cannot wait until this is up and working.

      We need a documented kernel build process 🙂

    • B

      Firewall Config

      General
      • • • BryceZ
      10
      0
      Votes
      10
      Posts
      11.9k
      Views

      C

      Hi guys, i’ve got a little problem with my firewall rules.
      I start my iptable configuration and my computer stop in TFTP. It doesn’t show me the fog boot menu
      The ports TFTP are open so what’s my problem ?

      [CODE]#!/bin/sh

      BEGIN INIT INFO Provides: PareFeu Required-Start: $remote_fs $syslog Required-Stop: Default-Start: 2 3 4 5 Default-Stop: 0 1 6 Short-Description: Start daemon at boot time Description: Enable service provided by daemon. END INIT INFO Vider les tables actuelles

      iptables -t filter -F
      iptables -t mangle -F
      iptables -t nat -F

      Vider les règles personnelles

      iptables -t filter -X
      iptables -t mangle -X
      iptables -t nat -X

      Interdire toute connexion entrante et sortante

      iptables -t filter -P INPUT DROP
      iptables -t filter -P FORWARD DROP
      iptables -t filter -P OUTPUT DROP

      Ne pas casser les connexions etablies

      iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
      iptables -A OUTPUT -m state --state RELATED,ESTABLISHED -j ACCEPT

      Autoriser loopback

      iptables -t filter -A INPUT -i lo -j ACCEPT
      iptables -t filter -A OUTPUT -o lo -j ACCEPT

      ICMP (Ping)

      iptables -t filter -A INPUT -p icmp -j ACCEPT
      iptables -t filter -A OUTPUT -p icmp -j ACCEPT

      SSH In

      iptables -t filter -A INPUT -p tcp --dport 22 -j ACCEPT

      SSH Out

      iptables -t filter -A OUTPUT -p tcp --dport 22 -j ACCEPT

      DNS In/Out

      iptables -t filter -A OUTPUT -p tcp --dport 53 -j ACCEPT
      iptables -t filter -A OUTPUT -p udp --dport 53 -j ACCEPT
      iptables -t filter -A INPUT -p tcp --dport 53 -j ACCEPT
      iptables -t filter -A INPUT -p udp --dport 53 -j ACCEPT

      NTP Out

      iptables -t filter -A OUTPUT -p udp --dport 123 -j ACCEPT

      HTTP + HTTPS Out

      iptables -t filter -A OUTPUT -p tcp --dport 80 -j ACCEPT
      iptables -t filter -A OUTPUT -p tcp --dport 443 -j ACCEPT

      HTTP + HTTPS In

      iptables -t filter -A INPUT -p tcp --dport 80 -j ACCEPT
      iptables -t filter -A INPUT -p tcp --dport 443 -j ACCEPT
      iptables -t filter -A INPUT -p tcp --dport 8443 -j ACCEPT

      FTP/TFTP Out

      iptables -t filter -A OUTPUT -p tcp --dport 20:21 -j ACCEPT
      iptables -t filter -A OUTPUT -p udp --dport 20:21 -j ACCEPT
      iptables -t filter -A OUTPUT -p tcp --dport 67:68 -j ACCEPT
      iptables -t filter -A OUTPUT -p udp --dport 67:68 -j ACCEPT

      FTP/TFTP In

      iptables -t filter -A INPUT -p tcp --dport 20:21 -j ACCEPT
      iptables -t filter -A INPUT -p udp --dport 20:21 -j ACCEPT
      iptables -t filter -A INPUT -p tcp --dport 67:69 -j ACCEPT
      iptables -t filter -A INPUT -p udp --dport 67:69 -j ACCEPT

      MySQL IN/OUT

      iptables -t filter -A OUTPUT -p udp --port 3306 -j ACCEPT
      iptables -t filter -A INPUT -p udp --port 3306 -j ACCEPT

      #NFS IN/OUT
      iptables -t filter -A OUTPUT -p udp --dport 2049 -j ACCEPT
      iptables -t filter -A INPUT -p tcp --dport 2049 -j ACCEPT

      iptables -t filter -A OUTPUT -p udp --dport 111 -j ACCEPT
      iptables -t filter -A INPUT -p tcp --dport 111 -j ACCEPT
      [/CODE]

      thanks you for your ideas.

      EDIT :
      I find my problem

      modprobe ip_conntrack_tftp
      modprobe ip_conntrack_ftp

      😉

    • 1 / 1